NestedScrollView + RecyclerView 嵌套产生卡顿处理

在使用NestedScrollView + RecyclerView 嵌套的时候,会出现卡顿情况,大致布局如下,在网上找了处理方式,在此记录下



    

        

           //在api21之后生效,可以确保api21+的不会卡顿
    


对于老版本手机(api21-),处理方式如下

val layoutManager = LinearLayoutManager(this)
 layoutManager.isSmoothScrollbarEnabled = true
 layoutManager.isAutoMeasureEnabled = true
 rvContentList.layoutManager = layoutManager
 rvContentList.setHasFixedSize(true)
 rvContentList.isNestedScrollingEnabled = false
 rvContentList.adapter = mAdapter

你可能感兴趣的:(android)