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

溫馨提示×

android如何設置button顏色

小億
137
2024-08-17 12:24:40
欄目: 編程語言

要設置button的顏色,可以使用以下方法:

  1. 在xml布局文件中設置button的背景顏色:
<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 button = findViewById(R.id.button);
button.setBackgroundColor(ContextCompat.getColor(this, R.color.colorPrimary));
  1. 使用selector來設置button的不同狀態下的顏色:

在res/drawable文件夾下創建一個selector文件,比如button_selector.xml:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@color/colorPrimaryDark" /> <!-- pressed -->
    <item android:state_focused="true" android:drawable="@color/colorAccent" /> <!-- focused -->
    <item android:drawable="@color/colorPrimary" /> <!-- default -->
</selector>

然后在xml布局文件中設置button的背景為該selector文件:

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

0
固安县| 新和县| 宜兰市| 灵丘县| 洪江市| 铁岭县| 五台县| 翼城县| 渝北区| 无棣县| 巢湖市| 东乌| 宁乡县| 临漳县| 巴南区| 化德县| 安仁县| 榆中县| 宝应县| 江华| 白沙| 大埔区| 博野县| 文安县| 铜山县| 巴彦淖尔市| 个旧市| 始兴县| 晋江市| 常州市| 瑞丽市| 广东省| 长子县| 昂仁县| 苍南县| 永嘉县| 莫力| 炎陵县| 民乐县| 新干县| 布尔津县|