Android 标签栏视图重叠?
我的问题是关于 android 标签栏。我在单独的活动中创建了选项卡栏,并且在默认的第一个选项卡视图中,我显示了活动的布局。现在,当我在任何其他活动中使用选项卡栏时,活动的布局与选项卡栏视图重叠。 catlog 中的错误是“无法保存要显示的视图...”。显示选项卡栏视图和活动视图的方法是什么?提前致谢。
My question is regarding android tab bar. I have created tab bar in a separate activity and on default first tab view, I am showing layout of an activity. Now when I use tab bar in any other activity, the activity's layout overlapped the tab bar view. Error in catlog is "couldn't save which view to show...". What is the way to show tab bar view along with the activity's view. thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在考虑与视图重叠的操作栏;您可以将
android:layout_marginTop="?android:attr/actionBarSize"
添加到您的布局中,以将视图“推”到操作栏下方。If you re taking about an action bar overlapping with the view; you can add
android:layout_marginTop="?android:attr/actionBarSize"
to your layout to "push" the view down under the action bar.