如何在 recyclerview 中一次加载所有项目?
How to load all items at once in recyclerview?
我在 recyclerview 中为每个项目使用 CountDownTimer。我面临屏幕上不可见项目的问题。当这些项目在屏幕上可见时,它们就会开始倒计时。我需要解决方案:How to load all items in recyclerview in android.
您可以尝试将回收站视图嵌入嵌套滚动视图中。这样即使违反了回收站视图的目的,所有项目也会立即加载。
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
/>
</ScrollView>
我在 recyclerview 中为每个项目使用 CountDownTimer。我面临屏幕上不可见项目的问题。当这些项目在屏幕上可见时,它们就会开始倒计时。我需要解决方案:How to load all items in recyclerview in android.
您可以尝试将回收站视图嵌入嵌套滚动视图中。这样即使违反了回收站视图的目的,所有项目也会立即加载。
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
/>
</ScrollView>