如何从java文件中设置imageButton的背景图像

时间:2016-04-16 20:16:39

标签: java android-studio android-imagebutton setbackground

我已经有一个带背景的图像按钮。当我单击图像按钮时,我希望背景更改为另一个图像。我尝试使用“//.setBackgroundResourse”,但它没有改变任何东西。请帮忙

1 个答案:

答案 0 :(得分:0)

尝试在setBackgroundResource

中使用drawable参数

像这样:

Button myButton = (Button) View.findViewById(R.id.myButton);

myButton.setBackgroundResource(R.drawable.myBackground);