郑州app开发过程中遇到用NestedScrollView处理遮挡问题。那么如何处理呢?
其实是需要在布局中加入NestedScrollView就可以了。下面是布局代码:
{androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"}
{/androidx.core.widget.NestedScrollView}
只需要把代码放进NestedScrollView其中就可以,就可以避免遮挡问题了,只不过在这里要提醒大家一下,NestedScrollView里面只能有一个控件,或者说只能有一个孩子,不能有两个以及以上控件孩子,不然会报错的。