如何使用Dark主题设置PreferenceFragment

时间:2015-03-08 04:54:58

标签: android android-layout

styles.xml

<resources>
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar"></style>
    <style name="AppTheme" parent="AppBaseTheme"></style>
</resources>

以上代码不会更改我的设置首选项颜色架构。

如何解决此问题?

2 个答案:

答案 0 :(得分:0)

您必须在application标记

中的清单中应用主题
<application
            android:name=".app.MyApp"
            android:icon="@drawable/ic_launcher"
            android:label="@string/my_label"
            android:theme="@style/AppTheme">

答案 1 :(得分:0)

您可以尝试在styles.xml中使用以下内容

<style name="SettingsTheme" parent="Theme.AppCompat.DayNight.DarkActionBar"/>

并在Manifest.xml中的设置活动声明中添加以下内容。

android:theme="@style/SettingsTheme"

希望这能解决您的问题。