Android ScrollView嵌套RecyclerView出现item显示问题

出现的问题

  • RecyclerView显示不全
  • 滑动冲突

解决方式

  1. ScrollView替换为android.support.v4.widget.NestedScrollView

  2. 自定义LinearLayoutManager private class MyLinearLayoutManager extends LinearLayoutManager {

    public MyLinearLayoutManager(Context context) {
        super(context);
    }
    
    @Override
    public boolean canScrollVertically() {
        return false;
    }
    }
    

3.` //解决数据加载不完的问题

    recyclerView.setNestedScrollingEnabled(false);
    recyclerView.setHasFixedSize(true);
    //解决数据加载完成后, 没有停留在顶部的问题
    recyclerView.setFocusable(false);`

`

猜你喜欢

转载自blog.csdn.net/fepengwang/article/details/103270234
今日推荐