91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
修文县| 泸州市| 西和县| 连南| 濮阳市| 北流市| 洞头县| 内丘县| 陇南市| 香河县| 浮梁县| 资中县| 盐津县| 海晏县| 彭泽县| 丰顺县| 蒙山县| 南木林县| 永和县| 龙井市| 定陶县| 潼南县| 禹州市| 东港市| 海林市| 博客| 阿拉尔市| 萨迦县| 庐江县| 天津市| 普格县| 安义县| 达孜县| 武夷山市| 屏东县| 五华县| 门源| 青冈县| 琼结县| 涿州市| 威海市|