回收程序 视图在嵌套滚动视图中加载大型数据的速度非常慢
2022-09-04 03:31:51
我已经在我的.基本上,我希望RecyclerView与其他视图一起滚动。我面临的问题是,对于一小组数据,它工作正常,但是对于一大组数据(200个条目),每当我启动活动时,它都会冻结约3-5秒,然后加载。我删除了,它完美地工作,但它没有为我提供我想要的行为。RecyclerView
NestedScrollView
NestedScrollView
(有关其他信息,我正在从SQLite数据库加载数据。滚动没有问题,因为它很流畅。唯一的问题是活动冻结了一段时间)
<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">
<... Some other Views ...>
<android.support.v7.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>