Android修改button颜色
时间: 2023-05-16 10:06:26 浏览: 1282
Android点击改变按钮颜色的3种效果
4星 · 用户满意度95%
您可以通过以下代码修改 Android Button 的颜色:
1. 在 res/values/colors.xml 文件中定义颜色:
<color name="button_color">#FF0000</color>
2. 在布局文件中设置 Button 的背景色:
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My Button"
android:background="@color/button_color" />
3. 在代码中设置 Button 的背景色:
Button myButton = findViewById(R.id.my_button);
myButton.setBackgroundColor(getResources().getColor(R.color.button_color));
阅读全文