无法导入 SimpleCallback class
Cannot import the SimpleCallback class
我想使用 ItemTouchHelper class 中的 SimpleCallback class,如下所示,但导入失败。 Android 工作室表示 "cannot resolve symbol ItemTouchHelper"。
我查看了 android 开发者网站,但找不到任何已弃用的标记或类似的东西。
好像还能用
Android Studio 是最新的 (2.2.3),安装的 API 也是最新的。
Android 支持插件也已激活。
希望有人能帮助我。欢迎向我询问详情。
更新:Android Studio 找不到助手 class。 “...widget.helper”。
见下文:
import android.support.v7.widget.
那个 "Android Support" 插件说 "yes, this IDE can develop Android apps"。
它不是字面上的Android Support Library。
并确保您的 gradle 文件包含
dependencies {
...
compile "com.android.support:appcompat-v7:(pick a version)"
}
我想使用 ItemTouchHelper class 中的 SimpleCallback class,如下所示,但导入失败。 Android 工作室表示 "cannot resolve symbol ItemTouchHelper"。
我查看了 android 开发者网站,但找不到任何已弃用的标记或类似的东西。
好像还能用
Android Studio 是最新的 (2.2.3),安装的 API 也是最新的。
Android 支持插件也已激活。
希望有人能帮助我。欢迎向我询问详情。
更新:Android Studio 找不到助手 class。 “...widget.helper”。
见下文:
import android.support.v7.widget.
那个 "Android Support" 插件说 "yes, this IDE can develop Android apps"。
它不是字面上的Android Support Library。
并确保您的 gradle 文件包含
dependencies {
...
compile "com.android.support:appcompat-v7:(pick a version)"
}