gpt4 book ai didi

android - 如何将 FragmentTabHost 标签放在屏幕底部?

转载 作者:行者123 更新时间:2023-11-30 03:21:16 27 4
gpt4 key购买 nike

我试过下面的代码。将框架布局对齐到选项卡小部件上方,但它仍然不起作用

 <android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"

android:orientation="horizontal" />

<FrameLayout
android:id="@+id/tabFrameLayout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_alignParentTop="true"
android:layout_above="@android:id/tabs"
/>
</RelativeLayout>
</android.support.v4.app.FragmentTabHost>

编辑我正在使用 FragmentTabHost。也许这就是它不改变位置的原因

最佳答案

最终得到的解决方案如下:

  <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

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

<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
</android.support.v4.app.FragmentTabHost>
</LinearLayout>

关于android - 如何将 FragmentTabHost 标签放在屏幕底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19098366/

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