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

溫馨提示×

togglebutton如何自定義樣式

小樊
87
2024-07-03 14:23:17
欄目: 編程語言

要自定義ToggleButton的樣式,可以通過修改其背景、文本顏色、邊框樣式等屬性來實現。以下是一個示例代碼,展示了如何自定義ToggleButton的樣式:

  1. 創建一個drawable資源文件,命名為custom_toggle_button.xml:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/selected_background" android:state_checked="true"/>
    <item android:drawable="@drawable/unselected_background"/>
</selector>
  1. 創建兩個drawable資源文件,一個為selected_background.xml,另一個為unselected_background.xml,用來定義ToggleButton的選中和未選中狀態的背景樣式。

selected_background.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#FF4081"/>
    <corners android:radius="10dp"/>
</shape>

unselected_background.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#2196F3"/>
    <corners android:radius="10dp"/>
</shape>
  1. 在布局文件中使用自定義的ToggleButton樣式:
<ToggleButton
    android:id="@+id/toggleButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Toggle Button"
    android:textColor="#FFFFFF"
    android:background="@drawable/custom_toggle_button"
    android:checked="true"/>

通過以上步驟,可以自定義ToggleButton的樣式,包括背景顏色、圓角等屬性。您也可以根據需求進一步修改文本樣式、邊框樣式等來實現更加個性化的效果。

0
平泉县| 石门县| 剑川县| 华容县| 九寨沟县| 渭南市| 吉水县| 沂南县| 永康市| 揭东县| 波密县| 广宗县| 睢宁县| 灵武市| 遂昌县| 大竹县| 麻栗坡县| 镇巴县| 韩城市| 横山县| 华宁县| 内江市| 祁阳县| 新昌县| 河北区| 扎鲁特旗| 和顺县| 弥渡县| 罗源县| 乐都县| 灵山县| 锡林浩特市| 淮阳县| 疏附县| 漳州市| 精河县| 镶黄旗| 大石桥市| 临湘市| 金沙县| 家居|