tabhost - LinearLayout 中视图子级的顺序发生了变化

发布于 2024-11-01 05:55:09 字数 1277 浏览 3 评论 0原文

我似乎无法解决 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:enter image description here

This seems quite unusual to me - does anyone have any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狂之美人 2024-11-08 05:55:09

您的意思是它出现在层次结构查看器绘图的上方?这对我来说似乎很正常 - 该实用程序在此视图 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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文