码迷,mamicode.com
首页 > 其他好文 > 详细

ViewPager学习感受-思路

时间:2015-01-03 18:33:06      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

ViewPager 是一个容器,定义在一个Layout里面,但是要注意定义的时候要写明包名:

guide.xml文件
<?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.support.v4.view.ViewPager android:id="@+id/guideViewPager" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#000" > </android.support.v4.view.ViewPager> </RelativeLayout>

 

ViewPager里面的东西是另外的几个Layout:

guide_page_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"> <ImageView android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/guide1"/> </LinearLayout>

 

用inflater的方式把这些 guide_page_1.xml、guide_page_2.xml等文件变成一个view对象,并且放到一个List里面:

//inflater是把Layout文件变成View对象的一个家伙
LayoutInflater inflater = LayoutInflater.from(this);
views = new ArrayList<View>();
views.add(inflater.inflate(R.layout.guide_page_1,null));
views.add(inflater.inflate(R.layout.guide_page_2,null));
views.add(inflater.inflate(R.layout.guide_page_3,null));
views.add(inflater.inflate(R.layout.guide_page_4,null));
views.add(inflater.inflate(R.layout.guide_page_5,null));    

 

把做好的,里面装满View对象的(其实就是那些Layout)List发送给PageAdapter,让Adapter自己往里生成就可以了。

关于Adapter的内部我琢磨琢磨再记录。

 

ViewPager学习感受-思路

标签:

原文地址:http://www.cnblogs.com/wangji/p/4199749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!