拆分布局分为两个?

时间:2016-06-16 17:35:04

标签: java android xml string performance

我想将我的片段分成两个相对布局,并在顶部插入一个TabLayout。我的问题是标签布局与顶部RelativeLayout重叠,使其看起来不到50%:

我希望它看起来如何。这两个部分应该占50%,不包括TAB 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>

尽管我的标签布局位于顶部,但如何均匀分割两个部分?

1 个答案:

答案 0 :(得分:1)

更改活动布局中的ViewPager

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