我的xml樣式我在ScrollView中使用了android.support.v4.view.ViewPager。問題是我沒有得到一個滾動條。當我從一個頁面滑動到另一個頁面時,ViewPager本身的行爲也很奇怪。ViewPager in ScrollView no Scrollbar
將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>
在此先感謝
http://stackoverflow.com/questions/2646028/android-horizontalscrollview-within-scrollview-touch-handling找到了解決辦法 – user1324936
郵報回答你的問題,並驗證自己。我失去了時間到這個頁面,認爲它沒有解決。謝謝。 – shkschneider