我有一个完全被ScroolView占用的片段。我在ScrollView的布局中添加了一个ViewPager,就像在这段代码中一样:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
tools:context="com.asdf.AFragment">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:fillViewport="true"
android:scrollbars="vertical"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/top_linear_layout"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:minHeight="100dp">
<TextView
android:id="@+id/meteo_placeholder"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Meteo and others"
android:textAppearance="?android:attr/textAppearanceSmall" />
</FrameLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Begin"
android:textSize="30dp"
/>
<!--THIS IS NOT SHOWN-->
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/view_pager_main"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<android.support.v4.view.PagerTitleStrip
android:id="@+id/title_strip_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:paddingTop="4dp"
android:paddingBottom="4dp" />
</android.support.v4.view.ViewPager>
<!-- LAST TEXT VIEW -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="End"
android:textSize="30dp"
/>
</LinearLayout>
</ScrollView>
但ViewPager根本没有显示。我确信它的工作原理是因为使用了它的适配器(我可以看到对 getItem()的调用,而ViewPager单独工作正常)。 但是,如果删除最后一个文本视图,则会显示ViewPager,但ScrollView根本不可滚动,并且所有LinearLayout的内容都限制在屏幕高度,就像没有ScrollView一样