gpt4 book ai didi

安卓。 TabWidget 现在总是在最前面?

转载 作者:太空狗 更新时间:2023-10-29 15:14:03 26 4
gpt4 key购买 nike

我正在研究使用 fragment 处理选项卡。我想知道如何将 TabWidget 放在页面底部。

我正在研究 FragmentTab.java 示例(支持库 v4)。

有一个 XML 布局:

<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>

<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>

</LinearLayout>

无论我做什么,TabWidget 仍然在最前面。实际上,我完全可以删除 TabWidget 标签,但项目仍会成功启动,并且 TabWidget 会再次位于顶部。

这是否意味着现在使用 FragmentActivity 和 FragmentTabHost 我只能将我的 TabWidget 置于顶部?

谢谢。

最佳答案

你快到了!我认为这里缺少的是您将 TabWidget 放在 FrameLayout 之前。此外,我认为您不能为您的 @android:id/tabcontent 设置 0dp 宽度和高度,它是需要可见且具有 layout_weight="1"的那个。试试这个(已编辑):

<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<!--
<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
-->
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />

</LinearLayout>
</android.support.v4.app.FragmentTabHost>

关于安卓。 TabWidget 现在总是在最前面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14128806/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com