1

我正在使用PreferenceFragment通過一個SwitchPreference對一個xml文件進行充氣。我如何製作該首選項的背景顏色,包括SwitchPreference的標題以匹配下面的圖像。我已經嘗試設置背景,但我只能設置開關圖標的背景顏色。如何將背景顏色添加到Android SwitchPreference?

enter image description here

+0

https://stackoverflow.com/questions/21235829/custom-switchpreference-in-android/21854548 –

+0

我期待改變整個背景,包括文字背後的顏色 –

回答

0

我使用樣式

Style.xml

<style name="SwitchTheme" parent="Theme.AppCompat.Light"> 
    <item name="colorControlActivated">@color/yourcolor</item> 
</style> 

在佈局

<android.support.v7.widget.SwitchCompat 
    android:id="@+id/switch_on_off" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" 
    android:layout_alignParentEnd="true" 
    android:layout_alignParentRight="true" 
    android:layout_gravity="center" 
    android:checked="false" 
    android:gravity="center" 
    android:paddingLeft="@dimen/padding" 
    android:paddingRight="@dimen/padding" 
    app:switchMinWidth="@dimen/switch_size" 
    app:theme="@style/SwitchTheme" /> 
0

styles.xml做到了這一點(做這種風格在style.xml文件在值文件夾中)

<resources> 

<style name="SwitchTheme" parent="Theme.AppCompat.Light"> 
    <!-- switch on thumb & track color --> 
    <item name="colorControlActivated">#02c754</item> 

    <!-- switch off thumb color --> 
    <item name="colorSwitchThumbNormal">#f1f1f1</item> 

    <!-- switch off track color --> 
    <item name="android:colorForeground">#42221f1f</item> 
</style> 

</resources> 

your_layout_activity.xml

<android.support.v7.widget.SwitchCompat 
    android:id="@+id/switch_on_off" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentEnd="true" 
    android:layout_alignParentRight="true" 
    android:layout_gravity="center" 
    android:checked="true" 
    android:gravity="center" 
    android:paddingLeft="30dp" 
    android:theme="@style/SwitchTheme" 
    app:switchMinWidth="55dp"/> 

這個源爲我工作。試試這個,你會明白

相關問題