我想将我的片段分成两个相对布局,并在顶部插入一个TabLayout。我的问题是标签布局与顶部RelativeLayout重叠,使其看起来不到50%:
目前,标签是顶部相对布局的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>
尽管我的标签布局位于顶部,但如何均匀分割两个部分?
答案 0 :(得分:1)
更改活动布局中的ViewPager
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_height="0dp"
android:layout_width="match_parent"/>