Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经有一个带背景的图像按钮。当我单击图像按钮时,我希望背景更改为另一个图像。我尝试使用“//.setBackgroundResourse”,但它没有改变任何东西。请帮忙
尝试在你的setBackgroundResource
setBackgroundResource
像这样:
Button myButton = (Button) View.findViewById(R.id.myButton); myButton.setBackgroundResource(R.drawable.myBackground);