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.
我已经在我的应用程序中实现了 ActionBar,并且我在操作栏中有 3 个选项卡(片段)。
我想在屏幕底部使用一些按钮显示选项(屏幕截图中的浅蓝色条)。
有人可以指导我如何实现这一点吗?
谢谢
要在底部显示操作栏菜单项,请将此属性添加到清单文件中的活动元素
android:uiOptions="splitActionBarWhenNarrow"
例子:
<activity android:name=".HomeScreen" ... ... android:uiOptions="splitActionBarWhenNarrow">
行。我明白了你的问题。您可以尝试为上部选项卡使用选项卡主机,并为下面的栏尝试相对布局,您可以在其中放置您的东西。