美文网首页实用
Android-NestedScrollView的使用

Android-NestedScrollView的使用

作者: 阿博聊编程 | 来源:发表于2022-07-16 22:46 被阅读0次
    图片来源网络,入侵必删

    最近项目开发当中,使用了NestedScrollView作为界面的滑动辅助。这篇博客分享NestedScrollView相关的知识,希望对看文章的小伙伴有所启发。

    NestedScrollView

    NestedScrollView是为了替代ScrollView的控件,主要运用于界面的滑动,在做项目代码优化的时候,我们可以替换一下。

    NestedScrollView的简单使用

    <androidx.core.widget.NestedScrollView
         android:layout_width="match_parent"
         android:layout_height="match_parent">
         ......
    </androidx.core.widget.NestedScrollView>     
    

    这样就可以让长布局的界面有滑动能力。

    XML去除水波纹

    android:overScrollMode="never"
    

    XML滑动布局撑满整个界面

    android:fillViewport="true"
    

    上面是我对NestedScrollView的简单使用。

    相关文章

      网友评论

        本文标题:Android-NestedScrollView的使用

        本文链接:https://www.haomeiwen.com/subject/hnekirtx.html