NestedScrollView嵌套ViewPager显示空白

最近在项目中使用Material Design 中的 AppBarLayout,然后在 NestedScrollView 中嵌套 ViewPager,但是运行的时候界面出现空白,代码如下:

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

    <!-- Your scrolling content -->
    <androidx.viewpager.widget.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</androidx.core.widget.NestedScrollView>

 

解决方法:

在 NestedScrollView 的属性中增加如下属性:

android:fillViewport="true"

 

posted @ 2020-05-13 16:57  第壹时间  阅读(1559)  评论(0编辑  收藏  举报