Using setImageDrawable dynamically to set image in an ImageView

前端 未结 17 1821
借酒劲吻你
借酒劲吻你 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 09:10

    From API 22 use:

    Drawable myDrawable =  ResourcesCompat.getDrawable(getResources(), 
                            R.drawable.dos_red, null);
    

提交回复
热议问题