Android 首选项屏幕布局
我的应用程序中有以下首选项屏幕
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<EditTextPreference
android:key="edittexvalue"
android:id="@+id/edittextvalue"
android:title="Title Here"
android:summary="Summary Here"
android:defaultValue="Some Value"/>
<Preference
android:key="customPref"
android:title="Title Here"
android:summary="Summary Here"/>
</PreferenceScreen>
所有这些都工作得很好,但是我的应用程序有自定义背景和文本颜色/大小,但我无法弄清楚如何格式化 PreferenceScreen 我假设您将其指向另一个 xml?但无法弄清楚我需要的代码以及应该进行哪些更改。主要关心的是背景颜色,我猜文本很好,但背景与我的应用程序的其余部分不匹配。所以我想设置一个自定义背景颜色,现在说红色(#ff0000)
我感谢任何可以帮助我解决这个问题的人
I have the following preference screen in my app
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<EditTextPreference
android:key="edittexvalue"
android:id="@+id/edittextvalue"
android:title="Title Here"
android:summary="Summary Here"
android:defaultValue="Some Value"/>
<Preference
android:key="customPref"
android:title="Title Here"
android:summary="Summary Here"/>
</PreferenceScreen>
All of that works just fine however my app i have custom backgrounds and text colors/sizes but i can't figure out how to format the PreferenceScreen I assume you point this at another xml? but can't figure out the code i need and what changes should be made. The main concern is the background color the text is fine i guess but the background just doesn't match the rest of my app. So i'd like to set a custom background color lets say red for now (#ff0000)
I thank anyone that can help me with this problem
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,您可以在
manifest
和styles.xml
中对其应用主题
(如果没有,请创建它在值文件夹中)
您可以修改您需要的任何内容
例如
我希望这有帮助
You can to apply a
theme
to it in yourmanifest
, for exampleand in your
styles.xml
(if you dont have one, create it in the values folder)you can modify whatever you need
For example
I hope this helps