突出显示首选项标题中选定的标题
我正在使用新的首选项标头来显示应用程序中的设置。 虽然我的 Motorola Xoom 上的标准设置活动以蓝色背景显示标题列表中的所选项目,但扩展 PreferenceActivity 的设置活动不会以任何方式突出显示所选项目。
有办法做到吗?
I'm using the new preference-headers to show the settings in my application.
While the standard settings activity on my Motorola Xoom shows the selected item in the header list with a blue background, my settingsactivity that extend PreferenceActivity does not highlight the selected item in any way.
Is there a way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我修好了。使用:
在 AndroidManifest 中就足够了:以前它曾经是“9”。
如果你切换到11,你会看到很多变化:菜单位于顶部而不是底部,应用程序图标显示在左上角,标题字体更大
要自定义突出显示等,我使用:
在我使用的 SettingsActivity 的 AndroidManifest 中:
切换到 minsdk=11 后,它可以工作
I fixed it. It was enough to use:
in the AndroidManifest: it used to be ="9" previously.
If you switch to 11 you will we see many changes: the menu is on the top and not on the bottom, the application icon is shown on the top-left and the title font is bigger
To customize the highlight etc I used:
In the AndroidManifest for the SettingsActivity I used:
After switching to minsdk=11 it works