更改偏好类别 android:title
我想知道是否有办法以编程方式更改
PreferenceCategory android:title="my name"
和/或
以编程方式更改ListPreference android:title="my name"
。
I was wondering if there was a way to change the
PreferenceCategory android:title="my name"
programmatically and or the
ListPreference android:title="my name"
programmatically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Keith,
是的,有一种方法可以通过编程方式更改标题。您必须在 PreferenceCategory 的 xml 布局中添加 android:key="myTag"。然后,您可以使用 findPreference("myTag") 从代码中访问 PreferenceCategory。代码如下:
XML:
Java 代码:
希望这会有所帮助。
Keith,
Yes, there is a way to change the title programmatically. You must add a android:key="myTag" in your xml layout for the PreferenceCategory. Then you can access the PreferenceCategory from code by using findPreference("myTag"). The code is below:
XML:
Java code:
Hope this helps.