tabhost - LinearLayout 中视图子级的顺序发生了变化
我似乎无法解决 TabHost 布局的简单问题。我构建了 xml,如 文档 所示:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</TabWidget>
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@+id/favouriteslist"
style="@style/POITab_Lists">
</ListView>
<ListView android:id="@+id/recentlist"
style="@style/POITab_Lists">
</ListView>
</FrameLayout>
</LinearLayout>
</TabHost>
但是我的 FrameLayout 出现在我的 TabWidget 之前,将其挤出:
这似乎对我来说很不寻常——有人有什么想法吗?
I can't seem to fix what ought to be a simple problem with my TabHost layout. I construct the xml, as in the docs:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</TabWidget>
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@+id/favouriteslist"
style="@style/POITab_Lists">
</ListView>
<ListView android:id="@+id/recentlist"
style="@style/POITab_Lists">
</ListView>
</FrameLayout>
</LinearLayout>
</TabHost>
and yet my FrameLayout appears before my TabWidget, crowding it out:
This seems quite unusual to me - does anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是它出现在层次结构查看器绘图的上方?这对我来说似乎很正常 - 该实用程序在此视图 XML 树层次结构中绘制,而不是布局本身。
如果图形布局中的一切都正常(TabWidget 位于 FrameLayout 之上),那么您无需担心:)
You mean it appears above in Hierarchy Viewer drawing? That seems quite a normal for me - this utility draws in this view XML tree hierarchy, not the layout itself.
If everything in the Graphical Layout is ok (TabWidget is above FrameLayout) then you have nothing to worry about :)