如何在android中制作自定义viewPager

时间:2015-08-11 11:26:34

标签: android

在viewPager中创建自定义布局。我想使用视图寻呼机来翻页,但在创建XML时会出现问题。我想修复顶部栏和底部任务栏,还想修复顶部栏和修复任务栏之间的页面。请帮助我enter image description here

1 个答案:

答案 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>