Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何制作如下图所示的垂直菜单?这种风格的菜单也出现在 YouTube 和 Chrome 等其他 Google 应用程序中。我尝试搜索谷歌,但没有找到任何相关的东西。
对于 sdk 17,您可以使用 SplitActionBar,它是默认 ActionBar 上可用的选项。
<activity android:name=".MainActivity" android:label="@string/title_activity_main" android:uiOptions="splitActionBarWhenNarrow" />
你可以看到这个例子
http://wptrafficanalyzer.in/blog/adding-action-items-and-overflow-menu-items-to-action-bar-in-android/
要支持所有版本,请使用 Action bar sherlock 库。
http://actionbarsherlock.com/
这是一个标准的 Android Menu,其中显示了溢出中的菜单项(即,未显示在操作栏上)。根据兼容性设计页面,带有硬件菜单键的设备在垂直菜单中显示这些。