缩小ViewPager的最佳方法是什么?

时间:2016-09-28 14:06:11

标签: android android-fragments android-viewpager

我在Fragment中有多个Viewpager,长按我想缩小屏幕中间的Viewpager,如下图所示。我想在主屏幕上显示Viewpager中的所有片段,如android OS。我这样做是通过使用库,

compile 'com.pixplicity.multiviewpager:library:1.0'

这是xml文件,

<com.pixplicity.multiviewpager.MultiViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/bott_sidemenu"
    app:matchChildWidth="@+id/vg" />

这是儿童布局,

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <FrameLayout
        android:id="@+id/vg"
        android:layout_width="200dp"
        android:layout_height="match_parent"
        android:layout_centerInParent="true" >

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:padding="16dp"
            android:background="@drawable/bg_page"
            android:scaleType="centerInside"
            android:src="@drawable/im_pixplicity"
            tools:ignore="ContentDescription" />

    </FrameLayout>

</RelativeLayout>

但是Viewpager Fragment内的所有项目大小都没有缩小。有办法这么做吗?建议将不胜感激。

image

0 个答案:

没有答案