SwitchPreferenceCompat

SwitchPreferenceCompat

android - SwitchPreferenceCompat的自定义样式属性(支持v7)-LMLPHP

我试图在SwitchPreferenceCompat顶部的PreferenceFragmentCompat顶部添加一些空间。基本上,我只需要在它和顶部Toolbar之间留出一些空间即可,要么扩展其高度,要么使用填充间隙,而无需添加会干扰Toolbar的阴影的空白。我相信可以通过向SwitchPreferenceCompat添加自定义样式来实现此目的,但是我很难使它起作用。

这是我尝试过的:

在我的styles.xml-

<style name="SwitchPreferenceNew" parent="Preference.SwitchPreferenceCompat.Material">
    <item name="android:paddingTop">20dp</item>
</style>


在我的app_preferences.xml-

<android.support.v7.preference.SwitchPreferenceCompat
    style="@style/SwitchPreferenceNew"
    android:defaultValue="false"
    android:icon="@drawable/ic_power_settings_new_black_48dp"
    android:key="prefsActivate"
    android:summary=""
    android:title="Activate reminders" />


我想我只是没有正确地覆盖样式,但是我很难找出如何使用SwitchPreferenceCompat进行处理。先感谢您!

最佳答案

我知道这很晚,但是我从以下代码中得到了结果:

我的应用主题:

<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    <item name="preferenceTheme">@style/my_preference_theme</item>
</style>


我的偏好主题:

<style name="my_preference_theme" parent="@style/PreferenceThemeOverlay">
    <item name="switchPreferenceCompatStyle">@style/preference_switch_compat</item>
</style>


在我的PreferenceSwitchCompat中,我使用了layout属性,您应该为视图创建新的布局

<style name="preference_switch_compat">
    <item name="android:layout">@layout/switch_layout</item>
</style>


这是您必须自定义视图的位置:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.SwitchCompat
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/switchWidget"
    android:background="#f00"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>


希望对某人有所帮助。

08-06 12:55