gpt4 book ai didi

android - 以编程方式设置 ImageButton 状态

转载 作者:行者123 更新时间:2023-12-02 22:14:17 26 4
gpt4 key购买 nike

我有几个 ImageButtons,我试图强制其中一个像 CheckBox 一样。当用户按下按钮时,我想在“按下”(点击并按住时为橙色)和“正常”状态之间切换按钮的背景。怎么办呢?下面的代码并没有真正做到这一点。

    public void btnErase_click(View v) {
ImageButton btnErase = (ImageButton) findViewById(R.id.btnErase);
if (pressed == true)
btnErase.setBackgroundColor(Color.YELLOW);
else
btnErase.setBackgroundColor(android.R.drawable.btn_default);
}

最佳答案

首先,提供选择器。保存为drawable/button_bg.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >

<item android:state_checked="true" android:drawable="@android:color/yellow" />
<item drawable="@android:drawable/btn_default" />

</selector>

将它应用到您的按钮作为背景。在代码中

public void btnErase_click(View v) {
ImageButton btnErase = (ImageButton) findViewById(R.id.btnErase);
if (pressed) {
btnErase.getBackground().setState(new int[]{android.R.attr.state_selected});
} else {
btnErase.getBackground().setState(new int[]{-android.R.attr.state_selected});
}
}

但我认为这不是一个好主意。如果您的按钮有两种状态,最好使用 ToggleButton .

关于android - 以编程方式设置 ImageButton 状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14736381/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com