1

我正在尝试在应用程序中设置一个可以静音的按钮,该按钮现在可以使用。我的新问题是我希望图像在我的 IF 语句中发生变化。

布局中的按钮代码:

<Button
            android:id="@+id/mute"
            android:background="@drawable/sound"
            android:layout_width="52dp"
            android:layout_height="52dp"
            android:layout_gravity="right"


     />

这是我的中频/静音代码代码:

                           if (cmute == false){

                    Editor editor = getPrefs.edit();
                    editor.putBoolean("mute", true);
                    editor.commit();
                    Editor editor2 = getPrefs.edit();
                    editor.putBoolean("notice", true);
                    editor.commit();                  
                }
                if (cmute == true){
                    Editor editor = getPrefs.edit();
                    editor.putBoolean("mute", false);
                    editor.commit();
                    Editor editor2 = getPrefs.edit();
                    editor.putBoolean("notice", false);
                    editor.commit();
                                    }

我需要向每个 IF 添加代码,一个用于在 (soundon.png) 按钮背景上显示声音,一个用于显示声音关闭 (soundoff.png) 背景按钮图像。(按钮 ID id'mute')

非常感谢。=]

4

1 回答 1

3

您可以使用setBackgroundResource更改背景。


Button btn = findViewById(R.id.mute);
btn.setBackgroundResource(R.drawable.soundoff);
于 2012-10-07T23:31:58.920 回答