ViewPager 仿 Gallery效果

xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clipChildren="false">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
android:clipChildren="false"
/>

</RelativeLayout>

Activity中:
viewHolder.vp.setOffscreenPageLimit(3);
viewHolder.vp.setPageMargin(xxx);
 
原文地址:https://www.cnblogs.com/lianghui66/p/5564011.html