我有 5 个独特的 xml 页面,它们相当复杂。我想把 5 页放在 ViewPager 中。我能找到的所有示例都只是通过代码将相同的内容放在每个页面中。我想在 viewpager 中以声明方式定义 xml,就像下面粘贴的 xml 一样。但这不起作用 - 应用程序以这个 xml 停止。
如果我不能以声明方式定义它,那么我可以将单个 xml 页面加载到 viewpager 中吗?我找不到这样做的例子。谢谢,加里布莱克利
<?xml version="1.0" encoding="utf-8"?>
<fragment >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView android:layout_width="match_parent"
android:layout_height="match_parent" android:id="@+id/imageView1"
android:src="@drawable/flashright" android:adjustViewBounds="true" android:scaleType="fitXY">
</ImageView>
</LinearLayout>
</fragment>
<fragment >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView android:layout_width="match_parent"
android:layout_height="match_parent" android:id="@+id/imageView1"
android:src="@drawable/flashleft" android:adjustViewBounds="true" android:scaleType="fitXY">
</ImageView>
</LinearLayout>
</fragment>