如何在按钮上创建选项卡和设置页面?

发布于 2024-12-09 16:57:58 字数 176 浏览 2 评论 0原文

这有点难以解释,所以我将尝试举一个简单的例子来说明我想要实现的内容。

答:当在市场应用程序中按下菜单按钮时,按钮上会出现某种选项卡,我该如何实现?

B.现在按设置(在按市场应用程序中的菜单按钮后), 有没有办法创建这种布局,或者我必须从头开始(如果没有“简单”的方法来做到这一点,我真的很感激代码示例)。

This is a bit difficult to explain, so I'll try to give a simple example to what I'd want to implement.

A. When the menu button is pressed in the Market app there are some kind of tabs on the buttom, how can I implement this ?

B.now press the settings (after you press the menu button in the Market app),
Is there a way to create this kind of a layout or I have to start from scratch (I would really appreciate code example for this if there is no 'easy' way to do this).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不美如何 2024-12-16 16:57:58

你这里指的不是布局。这是在 Android 应用程序中创建菜单的标准方法。

查看 Android 开发人员指南中的以下主题:http://developer。 android.com/guide/topics/ui/menus.html

关于你的第二个问题:对于设置/首选项,你可以使用 PreferenceScreen/PreferenceActivity。这在这里显示得很好:http://www.javacodegeeks。 com/2011/01/android-quick-preferences-tutorial.html

What you are referring to here is not a layout. This is the standard way of creating menues in Android applications.

Have a look at the following topic in the Android developer guide: http://developer.android.com/guide/topics/ui/menus.html

And regarding your second question: for settings/preferences, you can use a PreferenceScreen/PreferenceActivity. This is shown pretty well here: http://www.javacodegeeks.com/2011/01/android-quick-preferences-tutorial.html

百善笑为先 2024-12-16 16:57:58

如果您所说的选项卡是指单击菜单后弹出的按钮,那么您将创建自己的选项菜单。

http://developer.android.com/guide/topics/ui/menus.html

编辑:对于 B,请查看 PreferenceScreen/PreferenceActivity,如本文答案中所述。为了方便起见,仅在此处更新链接。

http://developer.android.com/reference/android/preference/PreferenceScreen.html
http://developer.android.com/reference/android/preference/PreferenceActivity.html

If, by tabs you mean the buttons that pop up after clicking menu, you will have create your own options menu.

http://developer.android.com/guide/topics/ui/menus.html

EDIT: For B, check out the PreferenceScreen/PreferenceActivity, as mention in an answer to this post. Just updating here with link for convinience.

http://developer.android.com/reference/android/preference/PreferenceScreen.html
http://developer.android.com/reference/android/preference/PreferenceActivity.html

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