我的协程正在主线程上运行,这是在我的协程上下文中指定的:

class ClickPreference(context: Context, attrs: AttributeSet) : Preference(context, attrs), CoroutineScope, View.OnClickListener {

    override val coroutineContext: CoroutineContext
        get() = Dispatchers.Main

override fun onClick(v: View?) {
    when (key){
        "logout" -> {
            CoroutineScope(coroutineContext).launch {
                CustomApplication.database?.clearAllTables()
                Log.d("MapFragment", "Cleared Tables")
            }
            if (Profile.getCurrentProfile() != null) LoginManager.getInstance().logOut()
            FirebaseAuth.getInstance().signOut()
            val intent = Intent(context, MainActivity::class.java)
            context.startActivity(intent)
        }
    }
}

但我仍然收到此错误:
java.lang.IllegalStateException: Cannot access database on the main thread since it may potentially lock the UI for a long period of time.

在我上面的协程上,将CustomApplication.database?.clearAllTables()调用到我的Room数据库中。

这是我的CustomApplication:
class CustomApplication : Application() {

    companion object {
        var database: AppDatabase? = null
    }

    override fun onCreate() {
        super.onCreate()
        CustomApplication.database = Room.databaseBuilder(this, AppDatabase::class.java, "AppDatabase").build()
    }

如果我的协程上下文在主线程上运行,为什么仍会出现错误?

最佳答案

该错误表明它不应在主线程上运行。数据库操作(以及其他所有形式的IO)可能会花费很长时间,因此应在后台运行。

您应使用专为运行IO操作而设计的Dispatchers.IO

10-07 19:47