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

前端 未结 6 1063
广开言路
广开言路 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:17

    Hope ths will help you

    ImageButton button1=(ImageButton)findViewById(R.id.button1);       
    button1.setImageResource(R.drawable.icon);
    

提交回复
热议问题