Kotlin 协程在 Android 中阻塞主线程

Sad*_*ary 4 android kotlin retrofit

我是 Kotlin 和协程的新手。我fun在我的活动和里面有一个,检查User用户名和密码,如果是真的,返回Users对象。
一切都好。但是当我按下按钮时,我的活动被阻止并等待Users登录响应。
我用这个乐趣:

private fun checkLogin() : Boolean {           
        runBlocking {
            coroutineScope {
                launch {
                    user = viewModel.getUserAsync(login_username.text.toString(), login_password.text.toString()).await()
                }
            }
            if(user == null){
                return@runBlocking false
            }
            return@runBlocking true
        }
        return false
    }  
Run Code Online (Sandbox Code Playgroud)

这是我的 ViewModel :

class LoginViewModel(app: Application) : AndroidViewModel(app) {
    val context: Context = app.applicationContext
    private val userService = UsersService(context)

    fun getUserAsync(username: String, password: String) = GlobalScope.async {
        userService.checkLogin(username, password)
    }
}
Run Code Online (Sandbox Code Playgroud)

用户服务:

class UsersService(ctx: Context) : IUsersService {
        private val db: Database = getDatabase(ctx)
        private val api = WebApiService.create()
        override fun insertUser(user: Users): Long {
            return db.usersDao().insertUser(user)
        }

        override suspend fun checkLogin(username: String, pass: String): Users? {
            return api.checkLogin(username, pass)
        }
    }

    interface IUsersService {
        fun insertUser(user: Users) : Long
        suspend fun checkLogin(username: String, pass: String): Users?
    }
Run Code Online (Sandbox Code Playgroud)

这是我的 apiInterface:

interface WebApiService {

    @GET("users/login")
    suspend fun checkLogin(@Query("username") username: String,
                   @Query("password")password: String) : Users
Run Code Online (Sandbox Code Playgroud)

如何解决在等待从服务器检索数据时阻止我的活动的问题?

Ten*_*r04 5

你永远不应该runBlocking在 Android 应用程序中使用。它仅用于mainJVM 应用程序的功能或测试以允许使用在应用程序退出之前完成的协程。否则它就违背了协程的目的,因为它会阻塞,直到它的所有 lambda 返回。

您也不应该使用 GlobalScope,因为它会在 Activity 关闭时取消您的作业,并且它会在后台线程而不是主线程中启动协程。您应该为活动使用本地范围。您可以通过在您的活动 ( val scope = MainScope()) 中创建一个属性并在onDestroy()( scope.cancel()) 中取消它来完成此操作。或者,如果您使用该androidx.lifecycle:lifecycle-runtime-ktx库,则可以仅使用现有lifecycleScope属性。

如果您总是await在返回之前执行异步作业,那么您的整个函数将阻塞,直到您获得结果,因此您已经执行了一个后台任务并使其阻塞了主线程。

有几种方法可以解决这个问题。

  1. 使 ViewModel 公开一个挂起函数,活动从协程调用它。
class LoginViewModel(app: Application) : AndroidViewModel(app) {
    //...

    // withContext(Dispatchers.Default) makes the suspend function do something
    // on a background thread and resumes the calling thread (usually the main 
    // thread) when the result is ready. This is the usual way to create a simple
    // suspend function. If you don't delegate to a different Dispatcher like this,
    // your suspend function runs its code in the same thread that called the function
    // which is not what you want for a background task.
    suspend fun getUser(username: String, password: String) = withContext(Dispatchers.Default) {
        userService.checkLogin(username, password)
    }
}

//In your activity somewhere:
lifecycleScope.launch {
    user = viewModel.getUser(login_username.text.toString(), login_password.text.toString())
    // do something with user
}
Run Code Online (Sandbox Code Playgroud)
  1. 通过适当的视图模型封装,Activity 真的不应该像这样启动协程。该user属性应该是 Activity 可以观察到的 ViewModel 中的 LiveData。那么协程只需要从 ViewModel 中启动:
class LoginViewModel(app: Application) : AndroidViewModel(app) {
    //...
    private val _user = MutableLiveData<User>()
    val user: LiveData<User> = _user

    init {
        fetchUser()
    }

    private fun fetchUser(username: String, password: String) = viewModelScope.launch {
        val result = withContext(Dispatchers.Default) {
            userService.checkLogin(username, password)
        }
        _user.value = result
    }
}

//In your activity somewhere:
viewModel.user.observe(this) { user ->
    // do something with user
}
Run Code Online (Sandbox Code Playgroud)