Android button颜色怎么设置

avatar
作者
筋斗云
阅读量:0

要设置Android按钮的颜色,可以使用以下方法:

  1. 在XML布局文件中设置按钮的背景颜色:
<Button     android:id="@+id/button"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="Button"     android:background="@color/colorPrimary" /> 
  1. 在java代码中设置按钮的背景颜色:
Button button = findViewById(R.id.button); button.setBackgroundColor(getResources().getColor(R.color.colorPrimary)); 
  1. 使用Selector设置按钮的不同状态下的颜色: 在res/drawable文件夹下创建一个selector文件,例如button_selector.xml,内容如下:
<selector xmlns:android="http://schemas.android.com/apk/res/android">     <item android:state_pressed="true" android:drawable="@color/colorAccent" />     <item android:drawable="@color/colorPrimary" /> </selector> 

然后在布局文件或java代码中设置按钮的背景为这个selector:

<Button     android:id="@+id/button"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:text="Button"     android:background="@drawable/button_selector" /> 

通过以上方法可以设置Android按钮的颜色。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!