亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Android button顏色怎么設置

小億
227
2024-03-01 09:32:19
欄目: 編程語言

要設置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按鈕的顏色。

0
沅江市| 都兰县| 潮安县| 茂名市| 台南市| 长武县| 宿松县| 吴桥县| 伊通| 陆丰市| 大同县| 江油市| 龙江县| 弥渡县| 来安县| 宣汉县| 高雄县| 东城区| 和林格尔县| 张家界市| 西藏| 环江| 沙田区| 玉树县| 昌黎县| 藁城市| 曲水县| 巧家县| 永州市| 宁陵县| 德兴市| 扎鲁特旗| 司法| 礼泉县| 汉寿县| 伊金霍洛旗| 德钦县| 朝阳县| 安化县| 历史| 仪征市|