私のxmlスタイルでは、ScrollView内でandroid.support.v4.view.ViewPagerを使用します。問題は、スクロールバーが表示されないことです。あるページから別のページにスライドすると、ViewPager自体も奇妙な動作をします。
ScrollViewを固定の高さに設定します(例:1200dip)はスクロールに役立ちますが、ViewPagerは表示されません。これが私のxmlです:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadeScrollbars="true"
android:fillViewport="true"
android:scrollbars="vertical" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/menu"
/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</android.support.v4.view.ViewPager>
</RelativeLayout>
</ScrollView>
前もって感謝します