Просмотр исходного кода

Merge pull request #11503 from t895/stateflow-patch

android: Delay collecting UI state in games fragment
Charles Lombardo 2 лет назад
Родитель
Сommit
0c55248f92
1 измененных файлов с 4 добавлено и 4 удалено
  1. 4 4
      src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/GamesFragment.kt

+ 4 - 4
src/android/app/src/main/java/org/yuzu/yuzu_emu/ui/GamesFragment.kt

@@ -93,12 +93,12 @@ class GamesFragment : Fragment() {
 
 
         viewLifecycleOwner.lifecycleScope.apply {
         viewLifecycleOwner.lifecycleScope.apply {
             launch {
             launch {
-                repeatOnLifecycle(Lifecycle.State.CREATED) {
+                repeatOnLifecycle(Lifecycle.State.RESUMED) {
                     gamesViewModel.isReloading.collect { binding.swipeRefresh.isRefreshing = it }
                     gamesViewModel.isReloading.collect { binding.swipeRefresh.isRefreshing = it }
                 }
                 }
             }
             }
             launch {
             launch {
-                repeatOnLifecycle(Lifecycle.State.CREATED) {
+                repeatOnLifecycle(Lifecycle.State.RESUMED) {
                     gamesViewModel.games.collect {
                     gamesViewModel.games.collect {
                         (binding.gridGames.adapter as GameAdapter).submitList(it)
                         (binding.gridGames.adapter as GameAdapter).submitList(it)
                         if (it.isEmpty()) {
                         if (it.isEmpty()) {
@@ -110,7 +110,7 @@ class GamesFragment : Fragment() {
                 }
                 }
             }
             }
             launch {
             launch {
-                repeatOnLifecycle(Lifecycle.State.CREATED) {
+                repeatOnLifecycle(Lifecycle.State.RESUMED) {
                     gamesViewModel.shouldSwapData.collect {
                     gamesViewModel.shouldSwapData.collect {
                         if (it) {
                         if (it) {
                             (binding.gridGames.adapter as GameAdapter).submitList(
                             (binding.gridGames.adapter as GameAdapter).submitList(
@@ -122,7 +122,7 @@ class GamesFragment : Fragment() {
                 }
                 }
             }
             }
             launch {
             launch {
-                repeatOnLifecycle(Lifecycle.State.CREATED) {
+                repeatOnLifecycle(Lifecycle.State.RESUMED) {
                     gamesViewModel.shouldScrollToTop.collect {
                     gamesViewModel.shouldScrollToTop.collect {
                         if (it) {
                         if (it) {
                             scrollToTop()
                             scrollToTop()