如何更改另一个活动中的按钮背景按钮?

时间:2017-11-16 00:01:18

标签: android android-layout android-studio button

嗨我有3个带有Button的XML布局(没有类或活动或片段),并在另一个活动中使用视图寻呼机...现在我希望在条件为真时在视图寻呼机活动中更改按钮背景。怎么做?

此图片: enter image description here

1 个答案:

答案 0 :(得分:0)

要更改按钮的背景,首先必须初始化按钮。让我们说你按钮初始化:

Button myButton = (Button) findViewById(R.id.theButton);

当然,按钮的ID是您在XML文件中设置的ID。您可以随时在与按钮声明相同的范围内更改背景颜色:

myButton.setBackgroundColor(R.color.anyColor);

希望这可以回答你的问题,因为它很混乱。