gpt4 book ai didi

android - 以编程方式更改按钮背景可绘制onClick

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:49:26 29 4
gpt4 key购买 nike

我正在尝试切换我的按钮的背景可绘制对象,以便当用户单击该按钮时,其背景会发生变化,而当用户再次单击该按钮时,其背景将恢复为默认。这是我的代码:

public void Favorites(View V) {
Button star = (Button) findViewById(R.id.buttonStar);
if(star.getBackground().equals(R.drawable.btn_star_off)) {
star.setBackgroundResource(R.drawable.btn_star_on);
} else {
star.setBackgroundResource(R.drawable.btn_star_off);
}
}

我很确定这不是您通过 if 语句使用可绘制对象的方式。有人可以建议一种方法吗?

最佳答案

private boolean isButtonClicked = false; // You should add a boolean flag to record the button on/off state

protected void onCreate(Bundle savedInstanceState) {
......
Button star = (Button) findViewById(R.id.buttonStar);
star.setOnClickListener(new OnClickListener() { // Then you should add add click listener for your button.
@Override
public void onClick(View v) {
if (v.getId() == R.id.buttonStar) {
isButtonClicked = !isButtonClicked; // toggle the boolean flag
v.setBackgroundResource(isButtonClicked ? R.drawable.btn_star_on : R.drawable.btn_star_off);
}
}
});
}

关于android - 以编程方式更改按钮背景可绘制onClick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29330089/

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