使用CoordinatorLayout时,我的ScrollView大小不正确

时间:2015-06-01 13:05:09

标签: android android-support-library material-design android-scrollview android-design-library

我在布局中使用ScrollView,并尝试使用CoordinatorLayout中的新design support library

我的布局文件如下所示:

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

  <ScrollView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      app:layout_behavior="@string/appbar_scrolling_view_behavior">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
      ...
    </LinearLayout>
  </ScrollView>
  <android.support.design.widget.AppBarLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
    <android.support.v7.widget.Toolbar ... />
  </android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>

测试时,scrollview仅占用屏幕的一部分。出了什么问题?

2 个答案:

答案 0 :(得分:117)

标准ScrollView仅用作父级。您需要将ScrollView更改为android.support.v4.widget.NestedScrollView

可以在AppBarLayout的参考文档中看到一个示例。

答案 1 :(得分:3)

  

NestedScrollView与ScrollView类似,但它支持充当   新旧版本上的嵌套滚动父级和子级   Android。默认情况下,嵌套滚动处于启用状态。

您可以在父级ScrollView中使用NestedScrollView。当在另一个滚动视图中需要滚动视图时,可以使用NestedScrollView。当系统需要确定要滚动的视图时,这是有用的。

以下是带有CoordinatorLayout的NestedScrollView的示例:

 <android.support.design.widget.CoordinatorLayout
         xmlns:android="http://schemas.android.com/apk/res/android"
         xmlns:app="http://schemas.android.com/apk/res-auto"
         android:layout_width="match_parent"
         android:layout_height="match_parent">

     <android.support.v4.widget.NestedScrollView
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             app:layout_behavior="@string/appbar_scrolling_view_behavior">

         <!-- Your scrolling content -->

     </android.support.v4.widget.NestedScrollView>

     <android.support.design.widget.AppBarLayout
             android:layout_height="wrap_content"
             android:layout_width="match_parent">

         <android.support.v7.widget.Toolbar
                 ...
                 app:layout_scrollFlags="scroll|enterAlways"/>

         <android.support.design.widget.TabLayout
                 ...
                 app:layout_scrollFlags="scroll|enterAlways"/>

     </android.support.design.widget.AppBarLayout>

 </android.support.design.widget.CoordinatorLayout>