Android 中的自定义导航菜单
我想在我的 Android 应用程序中创建一个导航菜单:一个始终位于屏幕底部的栏,有 4 个选项“首页|类别|搜索|收藏夹”,并突出显示当前页面。 看来选项菜单很难定制,所以我无法使用它。
我是否必须在每个布局中添加此导航栏还是有更好的解决方案?
谢谢
朱利安
I'd like to create a navigation menu in my Android app: a bar always at the bottom of the screen, with 4 choices Home|Categories|Search|Favorites, and the current page highlighted.
It seems the options menu can hardly be customized, so I can't use it.
Do I have to add this navigation bar in every layout or is there any better solutions?
Thanks
Julien
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来你正在复制 iPhone 界面。由于大多数 Android 手机的屏幕底部都有按钮(主页、返回等),因此将导航放在那里可能不是一个好主意,因为很容易按错按钮。
Google 推荐的方法是使用 Action Bar 模式,横跨屏幕顶部,这非常清晰,并且意味着您的应用程序与其他应用程序保持一致(看看 Twitter、Google 地图、Facebook - 它们都使用 Action Bar 模式)。
从 Honeycomb (v3.0) 开始:
http://developer.android.com/reference/android/app/ActionBar。 html
一个简单的库,用于在任何版本的 Android 上创建操作栏
https://github.com/johannilsson/android-actionbar
创建一个使用该库在 3.0 之前的版本上,但使用 v3.0+ 的官方实现,请尝试以下操作:
https://github.com/JakeWharton/ActionBarSherlock
操作栏是高度可定制的,但请记住良好用户界面的关键是整个平台的一致性,即您的应用程序与其他应用程序和操作系统保持一致。
如果您需要在特定页面中包含更多项目或项目的导航,您可以使用 TabLayout,但对于您的主要导航,请使用操作栏,这就是它的用途。
It sounds like you're replicating an iPhone interface. As most Android phones have buttons along the bottom of the screen (Home, Back, etc) it's likely to be a bad idea to put navigation there as it's easy to hit the wrong one.
The Google-recommended approach is to use the Action Bar pattern, across the top of the screen, which is very clear, and means your app is consistent with others (look at Twitter, Google Maps, Facebook - they all use the action bar pattern).
From Honeycomb (v3.0) onwards:
http://developer.android.com/reference/android/app/ActionBar.html
A simple library to create an Action Bar on any version of Android
https://github.com/johannilsson/android-actionbar
To create an action bar that uses that library on versions earlier than 3.0, but uses the official implemention for v3.0+, try this:
https://github.com/JakeWharton/ActionBarSherlock
The action bar is highly customisable, but remember that a key to a nice user interface is consistency across the platform, i.e. your app consistent with other apps and the OS.
If you need a navigation with more items or items within a specific page, you can use TabLayout, but for your primary nav, use the action bar, that's what it's for.
使用 TabLayout
Use the TabLayout