如何更改 Android 中首选项屏幕的布局

发布于 2024-10-18 15:55:59 字数 82 浏览 6 评论 0原文

我有一个首选项屏幕,我想在首选项屏幕的相对布局中添加一个按钮、图像视图等。我该怎么做? 首选项屏幕有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光匆匆的小流年 2024-10-25 15:55:59

最好的想法是扩展 Preference 类,并在您的relativelayout的构造函数上使用setWidgetLayoutResource。 widgetLayout 是标题和摘要左侧的区域。如果你想改变整个首选项,你需要使用setLayoutResource。在这种情况下,有一些限制:

此布局应包含一个 ViewGroup
ID widget_frame 为父级
为此的特定小部件
偏爱。应该同样如此
包含标题和摘要。

来源: 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:

This layout should contain a ViewGroup
with ID widget_frame to be the parent
of the specific widget for this
Preference. It should similarly
contain title and summary.

Source: http://developer.android.com/reference/android/preference/Preference.html#setLayoutResource(int)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文