如何将主题应用到首选项屏幕
How to apply theme to preferencescreen
我在 viewpager 中创建 PreferenceFragment 时出现错误
java.lang.IllegalStateException: Must specify preferenceTheme in theme
我提到了 但未能解决。我添加了我的 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>
以下是首屏代码
<?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>
你能给我点建议吗,我是第一次使用主题,对它感到困惑。仍然出现同样的错误。
在 manifest
中的 activity 标签中试试这个:
<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>
您正在加载 preference fragment
的 activity
没有设置主题。
也在您的 Apptheme
中进行设置
<item name="preferenceTheme">@style/PreferenceThemeOverlay</item>
而不是:
<item name="android:preferenceStyle">@style/PreferenceThemeOverlay</item>
将此行添加到您的 Apptheme
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
我在 viewpager 中创建 PreferenceFragment 时出现错误
java.lang.IllegalStateException: Must specify preferenceTheme in theme
我提到了
<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>
以下是首屏代码
<?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>
你能给我点建议吗,我是第一次使用主题,对它感到困惑。仍然出现同样的错误。
在 manifest
中的 activity 标签中试试这个:
<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>
您正在加载 preference fragment
的 activity
没有设置主题。
也在您的 Apptheme
<item name="preferenceTheme">@style/PreferenceThemeOverlay</item>
而不是:
<item name="android:preferenceStyle">@style/PreferenceThemeOverlay</item>
将此行添加到您的 Apptheme
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>