前面一篇高仿launcher和墨跡左右拖動效果獲得了很多朋友的好評,上一篇文章 主要是通過自定義ViewGroup實現的,有點麻煩。今天用ViewPager 這個類實現了同樣的效果,這樣代碼更少,但是效果是一樣的。ViewPager是實現左右兩個屏幕平滑地切換的一個類,它是Google提供的。
使用ViewPager首先需要引入Android-support-v4.jar這個jar包。具體ViewPager的用法,這裡不做介紹,自己從網上搜索吧!
下面先看一下效果:
效果請自行體驗和上一篇比較。下面上代碼:
首先是layout下面的main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
-
- <android.support.v4.view.ViewPager
- android:id="@+id/viewPager"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" />
-
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
-
- <LinearLayout
- android:id="@+id/viewGroup"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_marginBottom="30dp"
- android:gravity="center_horizontal"
- android:orientation="horizontal" >
- </LinearLayout>
- </RelativeLayout>
-
- </FrameLayout>