1. 程式人生 > >android之4.0控制元件switch自定義開關背景圖片和控制寬度

android之4.0控制元件switch自定義開關背景圖片和控制寬度

<style name="widget_gender_switch">
        <item name="android:layout_height">wrap_content</item>
        <item name="android:layout_width">wrap_content</item>
        <item name="android:textOff">""</item><!-- 此設定不需要文字,只顯示背景圖的開關 -->
        <item name="android:textOn">""</item>

        <item name="android:thumb">@drawable/widget_gender_thumb</item><!--滑塊格式9.png -->
        <item name="android:thumbTextPadding">10dp</item><!-- 用來控制背景圖片和文字之間的間距來控制switch整體寬度 -->
        <item name="android:track">@drawable/widget_gender_track</item><!-- 背景圖的開關 格式9.png-->

    </style>

參考http://stackoverflow.com/questions/20762490/how-to-change-height-and-width-of-switch-in-android

以上方法不完全準確,需參考如下,待測試

http://stackoverflow.com/questions/10173590/how-to-change-the-size-of-a-switch-widget