如何将主题应用于首选屏幕

时间:2017-01-15 15:21:38

标签: java android themes preferencefragment

我在viewpager中创建PreferenceFragment并将错误视为

java.lang.IllegalStateException: Must specify preferenceTheme in theme

我提到PreferenceFragmentCompat requires preferenceTheme to be set但无法解决。我添加了styles.xml,如下所示。

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="android:preferenceStyle">@style/PreferenceThemeOverlay</item>
    </style>

    <style name="SettingsTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="preferenceTheme">@style/PreferenceThemeOverlay</item>
    </style>
</resources>

及以下是清单

的代码
  <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme" >
        <activity android:name=".MainActivity"
            android:theme="@style/Theme.AppCompat.DayNight.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

以下是pref屏幕的代码

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    android:key="screen">

    <SwitchPreference
        android:key="sc"
        android:summary="Hi"
        android:title="Hello" />

</PreferenceScreen>

你可以建议,我第一次使用主题并对它感到困惑。仍然得到同样的错误。

1 个答案:

答案 0 :(得分:0)

manifest中的活动代码中尝试此操作:

<activity android:name=".MainActivity"
        android:theme="@style/AppTheme">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

正在加载activity的{​​{1}}没有设置主题。

同样在preference fragment

中设置此项
Apptheme

而不是:

<item name="preferenceTheme">@style/PreferenceThemeOverlay</item>

<item name="android:preferenceStyle">@style/PreferenceThemeOverlay</item>

中添加此行
Apptheme