Android教程:使用ViewPager实现左右循环滑动

前面一篇文章实现了使用ViewPager实现高仿launcher拖动效果 ,后来很多朋友问能不能实现左右循环滑动效果和引导页面。今天实现了左右滑动,至于在最后一页滑动跳转,这个也做了但是效果不是太好,也希望有实现的朋友能够分享下。在最后一页添加一张图片单击跳转,这个认为很简单大家自己添加个图片,点击后跳转就OK。

这篇是在实现了使用ViewPager实现高仿launcher拖动效果的基础上做了一些小的修改,可以参照前面的。废话不多说了,直接上代码吧!

首先看一些layout下的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>  

和前面一页使用viewpager。使用ViewPager首先需要引入android-support-v4.jar这个jar包。自己不要忘记加。

下面是核心代码:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/wyyyjw.html