PagerAdapter类
- getCount() :获得viewpager中有多少个view
- instantiateItem() :(1)将给定位置的view添加到ViewGroup(容器)中,创建并显示出来(2)返回一个代表新增页面的Object(key) ,通常都是直接返回view本身就可以了,当然你也可以自定义自己的key,但是key和每个view要一一对应
- isViewFromObject() :判断instantiateItem(ViewGroup,int)函数所返回来的Key与一个页面视图是否是代表的同一个视图(即它们是否是对应的,对应的表示同一个View),通常我们直接写 return view==object
- destoryItem() :移除一个给定位置的页面。适配器有责任从容器中删除这个视图。这是为了确保在finishUpdate(viewGroup)返回时视图能够被移除。而另外两个方法则是涉及到一个Key的东西
步骤:
1、Layout:主页面中调用 ViewPager,编写各滑动页面
2、Activity:把滑动的页面存到List并传到 适配器
3、适配器Adapter:继承 PagerAdapter
1、Layout:主页面中调用 ViewPager,编写各滑动页面
activity_view_pager.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" xmlns:android="http://schemas.android.com/apk/res/android"> <androidx.viewpager.widget.ViewPager android:layout_height="match_parent" android:layout_width="match_parent" android:id="@+id/vp"/> </LinearLayout>
view_pager_layout_1.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffaaffcc"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="30sp" android:text="layout1"/> </LinearLayout>
view_pager_layout_2.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffaaccff"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="30sp" android:text="layout2"/> </LinearLayout>
view_pager_layout_3.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffaaccff"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="30sp" android:text="layout2"/> </LinearLayout>
2、Activity:把滑动的页面存到List并传到 适配器
package xyz.lushangg.t8; import androidx.appcompat.app.AppCompatActivity; import androidx.viewpager.widget.ViewPager; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import java.util.ArrayList; import java.util.List; import xyz.lushangg.t8.R; import xyz.lushangg.t8.viewPager.ViewPagerAdapter; public class ViewPagerActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_view_pager); LayoutInflater lf = getLayoutInflater().from(this); View view1 = lf.inflate(R.layout.view_pager_layout_1,null); View view2 = lf.inflate(R.layout.view_pager_layout_2,null); View view3 = lf.inflate(R.layout.view_pager_layout_3,null); List<View> viewList=new ArrayList<>(); viewList.add(view1); viewList.add(view2); viewList.add(view3); ViewPager viewPager = findViewById(R.id.vp); ViewPagerAdapter viewPagerAdapter=new ViewPagerAdapter(viewList); viewPager.setAdapter(viewPagerAdapter); } }
3、适配器Adapter:继承 PagerAdapter
package xyz.lushangg.t8.viewPager; import android.view.View; import android.view.ViewGroup; import androidx.annotation.NonNull; import androidx.viewpager.widget.PagerAdapter; import java.util.List; public class ViewPagerAdapter extends PagerAdapter { private List<View> mListView; public ViewPagerAdapter(List<View> mListView){ this.mListView=mListView; } @NonNull @Override public Object instantiateItem(@NonNull ViewGroup container, int position) { container.addView(mListView.get(position),0); return mListView.get(position); } @Override public int getCount() { return mListView.size(); } @Override public boolean isViewFromObject(@NonNull View view, @NonNull Object object) { return view==object; } @Override public void destroyItem(@NonNull ViewGroup container, int position, @NonNull Object object) { container.removeView(mListView.get(position)); } }
结果展示:
滑动过程1页面:
滑动成功后的页面: