使用原因
- 项目需要。。。
- 不推荐这么用,原因:链接
使用过程中的问题记录
xml布局文件如下
...
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:padding="15dp"
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="@color/colorAccent"
android:gravity="center"
android:text="嵌套在NestedScrollView里面的头部"
android:textColor="#fff"
android:textSize="20dp" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
...
1.自动滚动问题
解决办法同ScrollView一样,在Scrollview包裹的子View添加如下属性:
android:descendantFocusability="blocksDescendants"
2.RecycleView复用机制失效问题
- 导致出现这种问题的原因:
链接 - 解决方案:高度写死(当然为了适配也不能这么干)。
在视图完成初始化的时候,通过下面方式,获取到视图高度,设置给recycleView
flContainer.viewTreeObserver.addOnGlobalLayoutListener (object:ViewTreeObserver.OnGlobalLayoutListener {
override fun onGlobalLayout() {
val height = flContainer.measuredHeight
val layoutParams = recyclerView.layoutParams
if (layoutParams.height<0){
layoutParams.height = height
recyclerView.layoutParams = layoutParams
flContainer.viewTreeObserver.removeOnGlobalLayoutListener(this)
}
}
})
网友评论