我在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
内的所有项目大小都没有缩小。有办法这么做吗?建议将不胜感激。