美文网首页
NestedScrollView嵌套RecyclerView后自

NestedScrollView嵌套RecyclerView后自

作者: 你是荣华 | 来源:发表于2019-01-31 16:15 被阅读0次

NestedScrollView自动滚动到RecyclerView

<NestedScrollView>

    <LinearLayout>

        <ImageView/>
        <RecyclerView/>

    <LinearLayout/>

<NestedScrollView/>

上述代码会跳过ImageView自动滚动到RecyclerView
解决方法
LinearLayout添加以下属性

android:focusable="true"
android:focusableInTouchMode="true" 

相关文章

网友评论

      本文标题:NestedScrollView嵌套RecyclerView后自

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