gpt4 book ai didi

android - 使用 fragment 选项卡主机时选项卡不在底部

转载 作者:搜寻专家 更新时间:2023-11-01 08:56:21 24 4
gpt4 key购买 nike

您好,我正在使用 FragmentTabHost 在我的应用程序中显示一些选项卡。选项卡显示但不出现在底部。这是我的 Activity 布局代码

<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="@+android:id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>

</LinearLayout>

我用来展示的代码取自Android文档。我的问题是选项卡总是在顶部,它们没有出现在底部

最佳答案

实际上这违反了 Android 设计指南,因为底部有软/硬按钮,如后退按钮、主页按钮等。

http://developer.android.com/design/patterns/pure-android.html

但是如果你非要把它们放在底部,你应该调整一下,下面已经实现了 https://github.com/rameshkec85/BottomTabsFragmentTabHost

关于android - 使用 fragment 选项卡主机时选项卡不在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18607480/

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