我希望我的应用程序中的活动和布局很少。应该有 100 页可以阅读有关科学、自然等方面的内容。但我不想制作 100 个布局。我想向我的视图适配器添加不同的页面,就像使用列表一样。对所有人使用相同的布局,然后向其中添加新数据(如列表)。我想创建具有相同列表视图概念但数据不同的页面。
已经有一篇关于我正在谈论的帖子:Using viewpager in my application but I can't understand how to do it..我做了一些尝试..我把android-support-v4.jar放在libs中..我制作了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:orientation="vertical"
>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1" >
</android.support.v4.view.ViewPager>
</LinearLayout>
下一步是什么?