我已经有一个带背景的图像按钮。当我单击图像按钮时,我希望背景更改为另一个图像。我尝试使用“//.setBackgroundResourse”,但它没有改变任何东西。请帮忙
答案 0 :(得分:0)
尝试在setBackgroundResource
像这样:
Button myButton = (Button) View.findViewById(R.id.myButton);
myButton.setBackgroundResource(R.drawable.myBackground);