かなり複雑な xml の 5 つの固有のページがあります。ViewPager 内に 5 ページを配置したいと考えています。私が見つけることができるすべてのサンプルは、コードを介して各ページに同じコンテンツを配置するだけです。以下に貼り付けたxmlのように、viewpagerでxmlを宣言的に定義したいと思います。しかし、これは機能しません。アプリはこの xml で停止します。
宣言的に定義できない場合、個々の xml ページをビューページャーにロードできますか? これを行う例は見つかりません。ありがとう、ゲイリー・ブレイクリー
<?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>