我是Android的新手,并在点击时使用此代码更改Button
的背景颜色:
but3.setBackgroundColor(Color.GREEN);
但它保持这种状态,并且在点击后不会恢复原来的颜色。我想要改回来。请帮忙。以下是更多代码。
but3.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v){
Button answerButton = ((Button) v);
String answer = answerButton.getText().toString();
if(currentQ.getANSWER().equals(answerButton.getText()))
{
score++;
Log.d("score", "Your score"+score);
but3.setBackgroundColor(Color.GREEN);
but3.invalidate();
}
if(qid<20){
currentQ=quesList1.get(qid);
setQuestionView();
}
else{
Intent intent = new Intent(ScratchActivity1.this, ResultActivity.class);
Bundle b = new Bundle();
b.putInt("score", score);
intent.putExtras(b);
startActivity(intent);
overridePendingTransition(R.anim.activity_in, R.anim.activity_out);
finish();
}
答案 0 :(得分:0)
如果要在按下按钮或聚焦按钮时更改背景,请选中here以查看如何为每个状态创建自定义背景(状态为按下按钮,聚焦,选择等)。
如果您只想在经过一段时间后更改背景,请参阅使用处理程序:
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
//This will run after 1000 (defined below) milliseconds has passed
}
}, 1000);