Using setImageDrawable dynamically to set image in an ImageView

前端 未结 17 1825
借酒劲吻你
借酒劲吻你 2020-12-04 08:22

I am generating a string from database dynamically which has the same name of image in drawable folder.

Now I want to set that value for ImageView

17条回答
  •  我在风中等你
    2020-12-04 08:54

    As simple as this answer:

    Drawable myDrawable = getResources().getDrawable(R.drawable.pic);
    imageview.setImageDrawable(myDrawable);
    

提交回复
热议问题