我想将NestedScrollView与CollapsingToolbarLayout一起使用。在NestedScrollView中,内容确实很长。不幸的是,我无法滚动到最后。一些长篇幅的内容被删减了。当我打开屏幕,滚动正常且所有内容可见时,这很奇怪。
<android.support.design.widget.CoordinatorLayout
android:fitsSystemWindows="true"
android:layout_height="match_parent"
android:layout_width="match_parent">
<android.support.design.widget.AppBarLayout
android:fitsSystemWindows="true"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<android.support.design.widget.CollapsingToolbarLayout
android:fitsSystemWindows="true"
android:layout_height="match_parent"
android:layout_width="match_parent"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:fitsSystemWindows="true"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/u8"
app:layout_collapseMode="parallax"/>
<android.support.v7.widget.Toolbar
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
app:layout_collapseMode="pin"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:clipToPadding="false"
android:layout_height="match_parent"
android:layout_width="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="vertical">
<!-- lots of widgets-->
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
编辑:我注意到剪切内容的高度与工具栏的高度相同。
最佳答案
答案来自here。将paddingBottom添加到NestedScrollView为我解决了此问题:
android:paddingBottom="<toolbar height in collapsed state>"
关于android - 与CollapsingToolbarLayout一起使用时,NestedScrollView不会滚动到末尾,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34306559/