Android Imagebutton change Image OnClick

前端 未结 7 1134
心在旅途
心在旅途 2020-12-09 07:43

I just added a new drawable folder under res folder. In the drawable folder, i copied the ic_launcher.png file from

7条回答
  •  暖寄归人
    2020-12-09 08:25

    It is very simple

    public void onClick(View v) {
    
            imgButton.setImageResource(R.drawable.ic_launcher);
    
        }
    

    Using set Background image resource will chanage the background of the button

提交回复
热议问题