作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
标题说明了一切:如何设置 PreferenceFragmentCompat 的样式。我的 v14/style.xml 是
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:editTextStyle">@style/Widget.EditText.White</item>
<item name="preferenceTheme">@style/PreferenceThemeOverlay</item>
</style>
<style name="Widget.EditText.White" parent="@android:style/Widget.EditText">
<item name="android:textColor">#ffffffff</item>
</style>
</resources>
基本主题有黑色背景 - 首选项屏幕无法读取,因为我在黑色背景上有黑色文本。
我尝试了很多方法,但无法更改文本颜色。
我必须做的是在设置 fragment 处于 Activity 状态时将 fragment 容器背景颜色设置为白色。一个丑陋的 hack,而不是我想要做的。
最佳答案
回答我自己的问题:我的 v14/style.xml 现在是
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:editTextStyle">@style/Widget.EditText.White</item>
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
</style>
<style name="Widget.EditText.White" parent="@android:style/Widget.EditText">
<item name="android:textColor">#ffffffff</item>
</style>
<style name="PreferenceThemeOverlay.v14">
<item name="android:background">@color/settings_background</item>
<item name="android:textColor">@color/settings_text_colour</item>
<item name="android:textColorSecondary">@color/settings_text_colour_secondary</item>
</style>
</resources>
我现在的问题是设置 ListPreference 的样式。
为什么这么难?如果有任何与样式首选项相关的文档,它会被隐藏得很好。呜呜呜!
关于android - 有没有办法设置 PreferenceFragmentCompat 的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33642248/
我是一名优秀的程序员,十分优秀!