Android 设置 Activity 的典型布局结构是什么?
我试图创建的 Activity 类型的一个很好的例子是 gmail 应用程序设置 Activity。它垂直列出所有可自定义的设置,每个设置之间有水平规则。有许多通常看起来相同的字段。例如:文本字段通常显示粗体标题,下面有说明,右侧有一个圆圈三角形。
根视图是什么样的视图组? 每个字段是什么类型的视图或视图组?
A great example of the kind of Activity I'm trying to create is the gmail app settings Activity. It lists all the customizable settings vertically with horizontal rules between each setting. There are variety of fields that usually look identical. For example: text fields usually display a bold heading with a description below and a circled triangle to the right.
What kind of viewgroup is the root view?
What kind of view or viewgroup is each field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置 Activity 通常源自
PreferenceActivity
。查看该链接,看看这是否是您要查找的内容。A settings Activity will usually be derived from
PreferenceActivity
. Take a look at the link and see if that's what you're looking for.