中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
天长市| 阳曲县| 崇礼县| 永康市| 保定市| 湘阴县| 莫力| 平邑县| 三原县| 汪清县| 安顺市| 竹北市| 营口市| 海阳市| 麻城市| 武宣县| 芦山县| 武隆县| 临夏市| 汕尾市| 溆浦县| 宣城市| 建德市| 泽普县| 宜州市| 玉环县| 宕昌县| 栖霞市| 翁牛特旗| 区。| 杭州市| 赤城县| 衡阳市| 四平市| 年辖:市辖区| 安徽省| 固始县| 滨海县| 永仁县| 浦北县| 安康市|