由于不推荐使用 Asynctask,我可以使用什么替代方案以及如何使用
since Aysnc task is depriciated what alternative I can use and how to use
class FavouritesFragment : Fragment() {
lateinit var recyclerFavourite:RecyclerView
lateinit var progressLayout:RelativeLayout
lateinit var progressBar:ProgressBar
lateinit var layoutManager:RecyclerView.LayoutManager
lateinit var recyclerAdapter: FavouriteRecyclerAdapter
var dbBookList=listOf<BookEntity>()
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate the layout for this fragment
val view=inflater.inflate(R.layout.fragment_favourites, container, false)
recyclerFavourite=view.findViewById(R.id.recyclerFavourite)
progressLayout=view.findViewById(R.id.progressLayout)
progressBar=view.findViewById(R.id.progressBar)
layoutManager=GridLayoutManager(activity as Context,2)
dbBookList=RetrieveFavourites(activity as Context).execute().get()
if(activity!=null)
{
progressLayout.visibility=View.GONE
recyclerAdapter= FavouriteRecyclerAdapter(activity as Context,dbBookList)
recyclerFavourite.adapter=recyclerAdapter
recyclerFavourite.layoutManager=layoutManager
}
return view
}
class RetrieveFavourites(val context: Context):AsyncTask<Void,Void,List<BookEntity>>()
{
override fun doInBackground(vararg p0: Void?): List<BookEntity> {
val db= Room.databaseBuilder(context,BookDatabase::class.java,"books-db").build()
return db.bookDao().getAllBooks()
}
}
}
上面的代码用于在单击添加到收藏夹按钮时将一本书添加到收藏夹数据库,现在由于 aysnc 任务被贬值,我如何将我的代码更改为最新的请帮助我
你可以使用协程,因为你已经在使用 kotlin
这是一个可以帮助您的代码实验室
https://developer.android.com/codelabs/android-room-with-a-view-kotlin#0
codelab 展示了与您相似的用例,所以我认为我不必再 post 片段
附上一段简短的代码片段以展示协程的工作原理
在 onViewCreated
viewLifecycleOwner.lifecycleScope.launch {
db.bookDao().getAllBooks()
}
在 BookDao 中
在 getAllBooks() 方法之前使用挂起[=13=]
suspend from getAllBooks(): List<Books>
这就是你要做的。
class FavouritesFragment : Fragment() {
lateinit var recyclerFavourite:RecyclerView
lateinit var progressLayout:RelativeLayout
lateinit var progressBar:ProgressBar
lateinit var layoutManager:RecyclerView.LayoutManager
lateinit var recyclerAdapter: FavouriteRecyclerAdapter
var dbBookList=listOf<BookEntity>()
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
// Inflate the layout for this fragment
val view=inflater.inflate(R.layout.fragment_favourites, container, false)
recyclerFavourite=view.findViewById(R.id.recyclerFavourite)
progressLayout=view.findViewById(R.id.progressLayout)
progressBar=view.findViewById(R.id.progressBar)
layoutManager=GridLayoutManager(activity as Context,2)
dbBookList=RetrieveFavourites(activity as Context).execute().get()
if(activity!=null)
{
progressLayout.visibility=View.GONE
recyclerAdapter= FavouriteRecyclerAdapter(activity as Context,dbBookList)
recyclerFavourite.adapter=recyclerAdapter
recyclerFavourite.layoutManager=layoutManager
}
return view
}
class RetrieveFavourites(val context: Context):AsyncTask<Void,Void,List<BookEntity>>()
{
override fun doInBackground(vararg p0: Void?): List<BookEntity> {
val db= Room.databaseBuilder(context,BookDatabase::class.java,"books-db").build()
return db.bookDao().getAllBooks()
}
}
}
上面的代码用于在单击添加到收藏夹按钮时将一本书添加到收藏夹数据库,现在由于 aysnc 任务被贬值,我如何将我的代码更改为最新的请帮助我
你可以使用协程,因为你已经在使用 kotlin
这是一个可以帮助您的代码实验室
https://developer.android.com/codelabs/android-room-with-a-view-kotlin#0
codelab 展示了与您相似的用例,所以我认为我不必再 post 片段
附上一段简短的代码片段以展示协程的工作原理
在 onViewCreated
viewLifecycleOwner.lifecycleScope.launch {
db.bookDao().getAllBooks()
}
在 BookDao 中
在 getAllBooks() 方法之前使用挂起[=13=]
suspend from getAllBooks(): List<Books>
这就是你要做的。