Android Kotlin Coroutines ktx扩展
生活随笔
收集整理的這篇文章主要介紹了
Android Kotlin Coroutines ktx扩展
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
轉載請標明出處:http://blog.csdn.net/zhaoyanjun6/article/details/119831011
本文出自【趙彥軍的博客】
文章目錄
- lifecycle 擴展
- viewModel 擴展
- liveData 擴展
本篇文章主要講的是,kotlin 協程在 ktx 上的擴展
lifecycle 擴展
對于 lifecycle 的擴展,已經在 以前的文章中講過了
https://blog.csdn.net/zhaoyanjun6/article/details/106413283
主要的依賴
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"viewModel 擴展
對于 viewModel 的擴展,已經在 以前的文章中講過了
https://blog.csdn.net/zhaoyanjun6/article/details/106413283
主要的依賴
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'liveData 擴展
主要的依賴
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.2.0'官網鏈接如下:
https://developer.android.google.cn/topic/libraries/architecture/coroutines
具體使用舉例如下:
class MainActivity : AppCompatActivity() {val user: LiveData<String> = liveData {//模擬網絡請求var user = getUser()if (user == "ok") {//模擬請求成功emit("ok")} else {//模擬請求失敗emit("failed")}}/*** 模擬網絡請求*/suspend fun getUser(): String {var ret = withContext(Dispatchers.Default) {"ok"}return ret}override fun onCreate(savedInstanceState: Bundle?) {super.onCreate(savedInstanceState)setContentView(R.layout.activity_main)user.observe(this, {Log.d("yy--", "name1:$it")})} }總結
以上是生活随笔為你收集整理的Android Kotlin Coroutines ktx扩展的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android ViewModel详解
- 下一篇: Android Annotation注解