gpt4 book ai didi

java - 将布局分成两部分?

转载 作者:行者123 更新时间:2023-12-01 09:47:31 26 4
gpt4 key购买 nike

我想将我的 fragment 分成两个相对布局,并在顶部放置一个 TabLayout。我的问题是选项卡布局与顶部的RelativeLayout重叠,使其看起来不到50%:

我想要它的外观。两个部分都应占 50%(不包括选项卡) enter image description here

目前,该选项卡是顶部相对布局 50% 的一部分,因此底部部分看起来更大。我怎样才能解决这个问题?这是 XML:

android:orientation="vertical"
android:windowSoftInputMode="adjustNothing">


<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#3ed682">

...

</RelativeLayout>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#ae25fd">
...

</RelativeLayout>

尽管我的选项卡布局位于顶部,如何均匀地分割两个部分?

最佳答案

更改 Activity 布局中的 ViewPager

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="0dp"
android:layout_width="match_parent"/>

关于java - 将布局分成两部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37865872/

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