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

溫馨提示×

android怎么改變button的背景顏色

小億
195
2024-02-22 16:59:32
欄目: 編程語言

要改變Android中Button的背景顏色,可以使用如下方法:

  1. 在XML布局文件中設置Button的背景顏色:
<Button
    android:id="@+id/myButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Click Me"
    android:background="@color/colorPrimary" />

在這個例子中,@color/colorPrimary是一個顏色資源,你可以在res/values/colors.xml文件中定義它。

  1. 在Java代碼中設置Button的背景顏色:
Button myButton = findViewById(R.id.myButton);
myButton.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
  1. 使用Selector設置Button的不同狀態下的背景顏色: 在res/drawable目錄下創建一個button_selector.xml文件:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@color/colorPrimaryDark" />
    <item android:drawable="@color/colorPrimary" />
</selector>

然后在Button的XML布局文件中設置背景:

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

0
抚顺市| 九寨沟县| 安多县| 富锦市| 益阳市| 宁远县| 日照市| 普兰店市| 葵青区| 兴义市| 沅江市| 抚顺市| 保亭| 金寨县| 拉孜县| 十堰市| 皮山县| 莱州市| 资中县| 扶风县| 中卫市| 包头市| 北宁市| 同江市| 乌拉特中旗| 济宁市| 桃园县| 麻栗坡县| 托里县| 青海省| 宜川县| 柞水县| 连平县| 浦东新区| 彰武县| 朝阳区| 扎囊县| 同江市| 云龙县| 修武县| 无极县|