implement android:src=“@drawable/image” programmatically in Android

前端 未结 6 1066
广开言路
广开言路 2021-02-03 18:24

I am trying to set the foreground image on an image button. After some research, I came across this code sample:



        
6条回答
  •  感情败类
    2021-02-03 19:19

    I know this is an old question, but for future searches... I believe what you are looking for is:

    imgButton.setImageDrawable(drawable);
    

提交回复
热议问题