【发布时间】:2019-01-11 07:29:09
【问题描述】:
我从这篇文章 Even Sweeter Android development with Android KTX (https://www.kotlindevelopment.com/even-sweeter-android-ktx-kotlin/) 中了解到,可以使用来自
的 KTX 简化 Android toastToast.makeText(context, R.string.toast_message, Toast.LENGTH_SHORT).show()
到
toast(R.string.toast_message)
我想在我的项目中尝试它,但在 androidx.core:core-ktx:1.0.0 中找不到它。那么这个扩展函数在哪个依赖中呢?
【问题讨论】:
-
but i could'nt find添加到应用程序模块并将您的 xml 重命名为它的一部分 androidx.core:core-ktx:1.0.1
标签: android android-ktx