答案 0 :(得分:0)
使用这种布局。根据您的需要改变这一点。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/topBar"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_alignParentTop="true" />
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/bottomBar"
android:layout_below="@+id/topBar" />
<View
android:id="@+id/bottomBar"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_alignParentBottom="true" />
</RelativeLayout>