我正在尝试在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
来完成它。提前谢谢!
答案 0 :(得分:4)
我知道这已经晚了,但我从以下代码得到了结果:
我的应用主题:
<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"/>
希望能帮到某人。