リストビューのヘッダーに「画像スライダー」を配置できるようにしたい。したがって、ユーザーは画像をスワイプして、ページのスクロールを開始すると、スライダーがスクロールして表示されなくなります。
ViewPagerで希望のスライダーを取得しました。これで、リストビューのヘッダーに挿入するだけで済みますが、これが大きな問題の原因になっているようです。
ポケットベルを次のように追加します。
ViewPager pager = (ViewPager) inflater.inflate(R.layout.featured_event, listView, false);
FeaturedEventAdapter featuredAdapter = new FeaturedEventAdapter( getFragmentManager() );
pager.setAdapter( featuredAdapter );
listView.addHeaderView( pager );
次のエラーが表示されます。
java.lang.ClassCastException: android.widget.LinearLayout cannot be cast to android.support.v4.view.ViewPager
ここで注意すべき重要な点は、リストビューの外に表示している場合、これは完全に正常に機能することです。
編集:featured_event xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="200dip">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal" >
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/car" />
</LinearLayout>
</android.support.v4.view.ViewPager>