我使用const
和c1 + c2
库创建了一个数据库。我正在关注这篇文章https://antonioleiva.com/databases-anko-kotlin/我正在尝试使用下面的数据库块插入数据,但是我收到了错误
类型干扰失败。预期的类型不匹配:必需的String found pair
kotlin
的build.gradle
anko
答案 0 :(得分:4)
Insert
的 Pair
方法是扩展函数,可在此file中找到。 Android Studio通常无法找到此类方法。所以导入它:
import org.jetbrains.anko.db.Database.insert
或
import org.jetbrains.anko.db.*