如何更改 Android 中首选项屏幕的布局
我有一个首选项屏幕,我想在首选项屏幕的相对布局中添加一个按钮、图像视图等。我该怎么做? 首选项屏幕有 3 个复选框首选项。
先感谢您。
i have a preferences screen , and i want to add a button, imageview etc all in a relative layout within the preferences screen.How do i do it?
The preferences screen has 3 checkboxpreferences.
thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的想法是扩展 Preference 类,并在您的relativelayout的构造函数上使用setWidgetLayoutResource。 widgetLayout 是标题和摘要左侧的区域。如果你想改变整个首选项,你需要使用setLayoutResource。在这种情况下,有一些限制:
来源: http://developer.android.com/reference/android /preference/Preference.html#setLayoutResource(int)
The best idea is to extend the Preference class, and use setWidgetLayoutResource on the constructor for your RelativeLayout. The widgetLayout is the area to the left of the title and summary. If you want to change the whole preference, you need to use setLayoutResource. In this case there are some restrictions:
Source: http://developer.android.com/reference/android/preference/Preference.html#setLayoutResource(int)