gpt4 book ai didi

android - 重新创建 fragment 时 ViewModel 重新获取数据

转载 作者:行者123 更新时间:2023-12-04 21:29:44 25 4
gpt4 key购买 nike

我正在使用 Bottom NavigationNavigation Architecture Component .当用户从一个项目导航到另一个项目(通过底部导航)并再次返回查看模型调用存储库函数以再次获取数据时。因此,如果用户来回移动 10 次,相同的数据将被提取 10 次。重新创建 fragment 时如何避免重新获取数据已经存在?

fragment

class HomeFragment : Fragment() {

@Inject
lateinit var viewModelFactory: ViewModelProvider.Factory

private lateinit var productsViewModel: ProductsViewModel
private lateinit var productsAdapter: ProductsAdapter

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_home, container, false)
}

override fun onActivityCreated(savedInstanceState: Bundle?) {
super.onActivityCreated(savedInstanceState)
initViewModel()
initAdapters()
initLayouts()
getData()
}

private fun initViewModel() {
(activity!!.application as App).component.inject(this)

productsViewModel = activity?.run {
ViewModelProviders.of(this, viewModelFactory).get(ProductsViewModel::class.java)
}!!
}

private fun initAdapters() {
productsAdapter = ProductsAdapter(this.context!!, From.HOME_FRAGMENT)
}

private fun initLayouts() {
productsRecyclerView.layoutManager = LinearLayoutManager(this.activity)
productsRecyclerView.adapter = productsAdapter
}

private fun getData() {
val productsFilters = ProductsFilters.builder().sortBy(SortProductsBy.NEWEST).build()

//Products filters
productsViewModel.setInput(productsFilters, 2)

//Observing products data
productsViewModel.products.observe(viewLifecycleOwner, Observer {
it.products()?.let { products -> productsAdapter.setData(products) }
})

//Observing loading
productsViewModel.networkState.observe(viewLifecycleOwner, Observer {
//Todo showing progress bar
})
}
}

查看型号
class ProductsViewModel
@Inject constructor(private val repository: ProductsRepository) : ViewModel() {

private val _input = MutableLiveData<PInput>()

fun setInput(filters: ProductsFilters, limit: Int) {
_input.value = PInput(filters, limit)
}

private val getProducts = map(_input) {
repository.getProducts(it.filters, it.limit)
}

val products = switchMap(getProducts) { it.data }
val networkState = switchMap(getProducts) { it.networkState }
}

data class PInput(val filters: ProductsFilters, val limit: Int)

存储库
@Singleton
class ProductsRepository @Inject constructor(private val api: ApolloClient) {

val networkState = MutableLiveData<NetworkState>()

fun getProducts(filters: ProductsFilters, limit: Int): ApiResponse<ProductsQuery.Data> {
val products = MutableLiveData<ProductsQuery.Data>()

networkState.postValue(NetworkState.LOADING)

val request = api.query(ProductsQuery
.builder()
.filters(filters)
.limit(limit)
.build())

request.enqueue(object : ApolloCall.Callback<ProductsQuery.Data>() {
override fun onFailure(e: ApolloException) {
networkState.postValue(NetworkState.error(e.localizedMessage))
}

override fun onResponse(response: Response<ProductsQuery.Data>) = when {
response.hasErrors() -> networkState.postValue(NetworkState.error(response.errors()[0].message()))
else -> {
networkState.postValue(NetworkState.LOADED)
products.postValue(response.data())
}
}
})

return ApiResponse(data = products, networkState = networkState)
}
}

导航 main.xml
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mobile_navigation.xml"
app:startDestination="@id/home">

<fragment
android:id="@+id/home"
android:name="com.nux.ui.home.HomeFragment"
android:label="@string/title_home"
tools:layout="@layout/fragment_home"/>
<fragment
android:id="@+id/search"
android:name="com.nux.ui.search.SearchFragment"
android:label="@string/title_search"
tools:layout="@layout/fragment_search" />
<fragment
android:id="@+id/my_profile"
android:name="com.nux.ui.user.MyProfileFragment"
android:label="@string/title_profile"
tools:layout="@layout/fragment_profile" />
</navigation>

查看模型厂
@Singleton
class ViewModelFactory @Inject
constructor(private val viewModels: MutableMap<Class<out ViewModel>, Provider<ViewModel>>) : ViewModelProvider.Factory {

@Suppress("UNCHECKED_CAST")
override fun <T : ViewModel> create(modelClass: Class<T>): T {
val creator = viewModels[modelClass]
?: viewModels.asIterable().firstOrNull { modelClass.isAssignableFrom(it.key) }?.value
?: throw IllegalArgumentException("unknown model class $modelClass")
return try {
creator.get() as T
} catch (e: Exception) {
throw RuntimeException(e)
}
}
}

enter image description here

最佳答案

一种简单的解决方案是从 更改 ViewModelProvider 所有者。这个需要 Activity ()在这行代码中:

ViewModelProviders.of(this, viewModelFactory).get(ProductsViewModel::class.java)
因此,由于 Activity 是 View 模型的所有者,并且 View 模型的生命周期附加到 Activity 而不是 fragment ,因此在 Activity 内的 fragment 之间导航不会重新创建 View 模型。

关于android - 重新创建 fragment 时 ViewModel 重新获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56378562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com