您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Android CardView+ViewPager如何實現ViewPager翻頁動畫,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
Viewpager通俗一點講就是一個允許左右翻轉帶數據的頁面的布局管理器,經常用來連接Fragment,它很方便管理每個頁面的生命周期,使用ViewPager管理Fragment是標準的適配器實現。最常用的實現一般有FragmentPagerAdapter和FragmentStatePagerAdapter。自行百度它的用法。今天我們要實現的是下面的效果:
NO PICTURE TALK A JB
要實現圖中的效果需要以下幾個知識點:
1.clipChildren屬性
2.一個頁面顯示多個ViewPager的Item
3.自定義PagerTransformer
4.ViewPager結合CardView
1.clipChildren 屬性
clipchildren :是否限制子View在其范圍內,當我們將其值設置為false后那么在子控件的高度高于父控件時也會完全顯示,而不會被壓縮,(上面中間的按鈕超過上面的陰影線,依舊可以正常顯示),默認的時候是true。
了解了這個屬性就可以讓一個頁面顯示多個Viewpager的Item
2.一個頁面顯示多個ViewPager的Item
直接在xml布局文件中配置:android:clipToPadding="false"
<?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" android:background="@drawable/background"> <!--1. 中間可滑動的viewPager--> <android.support.v4.view.ViewPager android:id="@+id/viewpager" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentBottom="true" android:clipToPadding="false" android:paddingEnd="48dp" android:paddingLeft="48dp" android:paddingRight="48dp" android:paddingStart="48dp" /> <RelativeLayout android:id="@+id/bottom_layout" android:layout_width="match_parent" android:layout_height="55dp" android:layout_alignParentBottom="true"> <ImageView android:id="@+id/img_like" android:layout_width="38dp" android:layout_height="38dp" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:src="@drawable/icon2" /> </RelativeLayout> <TextView android:id="@+id/indicator_tv" android:layout_width="wrap_content" android:layout_height="20dp" android:layout_above="@+id/bottom_layout" android:layout_centerHorizontal="true" android:gravity="center_vertical" android:text="1/199" android:textColor="#ffffff" android:textSize="16sp" /> <!--4. 頂部的titleBar--> <LinearLayout android:id="@+id/linearLayout" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <!--沉浸式activity,這個view是用來占位的--> <View android:id="@+id/position_view" android:layout_width="1px" android:layout_height="1px" /> <RelativeLayout android:layout_width="match_parent" android:layout_height="55dp" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="地圖操作" android:textColor="#ffffff" android:textSize="16sp" /> </RelativeLayout> </LinearLayout> </RelativeLayout>
3.自定義ViewPager翻頁動畫
直接上代碼
public class CustPagerTransformer implements ViewPager.PageTransformer { private int maxTranslateOffsetX; private ViewPager viewPager; public CustPagerTransformer(Context context) { this.maxTranslateOffsetX = dp2px(context, 180); } public void transformPage(View view, float position) { if (viewPager == null) { viewPager = (ViewPager) view.getParent(); } int leftInScreen = view.getLeft() - viewPager.getScrollX(); int centerXInViewPager = leftInScreen + view.getMeasuredWidth() / 2; int offsetX = centerXInViewPager - viewPager.getMeasuredWidth() / 2; float offsetRate = (float) offsetX * 0.38f / viewPager.getMeasuredWidth(); float scaleFactor = 1 - Math.abs(offsetRate); if (scaleFactor > 0) { view.setScaleX(scaleFactor); view.setScaleY(scaleFactor); view.setTranslationX(-maxTranslateOffsetX * offsetRate); } } /** * dp和像素轉換 */ private int dp2px(Context context, float dipValue) { float m = context.getResources().getDisplayMetrics().density; return (int) (dipValue * m + 0.5f); } }
使用方法
// 1. viewPager添加parallax效果,使用PageTransformer就足夠了 viewPager.setPageTransformer(false, new CustPagerTransformer(this));
4.CardView 與Viewpager聯合使用
先看viewpager的一個item布局
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <cn.yznu.gdmapoperate.ui.widget.AspectRatioCardView android:id="@+id/card_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginBottom="20dp" android:layout_marginLeft="20dp" android:layout_marginRight="20dp" app:cardCornerRadius="5dp" app:cardElevation="6dp" app:cardMaxElevation="6dp"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" android:background="@drawable/bg_map" android:contentDescription="@string/app_name" android:scaleType="centerCrop" /> <ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center" android:contentDescription="@string/app_name" android:scaleType="centerCrop" android:src="@drawable/map" /> <TextView android:id="@+id/txt_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_gravity="bottom|center" android:padding="5dp" android:text="@string/app_name" android:textColor="#12edf0" android:textSize="15sp" /> </cn.yznu.gdmapoperate.ui.widget.AspectRatioCardView> </FrameLayout>
使用ViewPager管理Fragment是標準的適配器實現,所以將這個xml作為fragment的布局就行了,就是這么簡單。
關于“Android CardView+ViewPager如何實現ViewPager翻頁動畫”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。