gpt4 book ai didi

Android 按钮 2 次点击

转载 作者:行者123 更新时间:2023-11-29 14:53:28 26 4
gpt4 key购买 nike

如何在点击 2 次后更改 android 按钮?第一次更改按钮我将使用此代码

{
public void onClick(View v) {
b.setBackgroundDrawable(getResources().getDrawable(R.drawable.menubuttonpressed));
}
}

我想再按一次后再次更改按钮 View 我该怎么做?

最佳答案

也许可以这样做:

int count = 0;

public void onClick(View v) {
count++;

if(count == 2){
count = 0;
b.setBackgroundDrawable(getResources()
.getDrawable(R.drawable.menubuttonpressed));
}
}

这将在每第二次点击您的按钮( View )后设置背景。

关于Android 按钮 2 次点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11757586/

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