-2

我希望按钮上的图像在单击后更改。这意味着即使单击了按钮,一旦新图像应该保留

4

2 回答 2

1

yourButton.setOnClickListener(new View.OnClickListener() { yourButton.setBackgroundResource(R.drawable.yourBackgroundImage); });

于 2012-10-16T18:43:09.930 回答
0

1.您需要为您的按钮定义状态,并定义每个状态对应的背景:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/button_pressed"
          android:state_pressed="true" />
    <item android:drawable="@drawable/button_focused"
          android:state_focused="true" />
    <item android:drawable="@drawable/button_default" />
</selector>

2.改变按钮的状态,一旦它被点击

button.setOnClickListener(new View.OnClickListener() {
             public void onClick(View v) {
                 button.setEnabled(true);
             }
         });
于 2012-10-16T19:09:30.363 回答