- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你如何在 Android Room 中使用 List 的
我有一个表实体,我想通过 Android Room 将其保存在我的 SQLDatabase 中。我已经按照我在网上可以做得很好的一切,并且没有 List 的工作。但是当我在我的实体中添加列表项时,它停止工作:
Table.java:5: error: cannot find symbol
@androidx.room.TypeConverters(value = {StringDataConverter.class, RowDataConverter.class})
@Entity(tableName = "tables")
data class Table(
var name : String,
var description : String,
var image : String,
var colNames : List<String> = emptyList(),
var rows : List<Row> = emptyList()
){
@PrimaryKey(autoGenerate = true)
var id: Int = 0
override fun toString(): String {
return "TableEntity(name='$name', description='$description', image='$image', id=$id)"
}
}
data class Row(var items: List<Unit>)
data class Unit(var value : Object, var type : String)
TypeConverters
在
Table
同样的错误,但我在文件
TablesDatabase
中得到了它
@Database(entities = [Table::class], version = 1)
@TypeConverters(StringDataConverter::class, RowDataConverter::class)
abstract class TablesDatabase : RoomDatabase(){
abstract fun tableDao(): TableDao
companion object {
@Volatile private var instance: TablesDatabase? = null
private val LOCK = Any()
operator fun invoke(context: Context) = instance ?: synchronized(LOCK){
instance ?: buildDataBase(context).also{
instance = it
}
}
private fun buildDataBase(context: Context) = Room.databaseBuilder(context.applicationContext, TablesDatabase::class.java, "tablesx2.db").build()
}
}
public class StringDataConverter {
@TypeConverter
public static List<String> fromString(String value) {
Type listType = new TypeToken<List<String>>() {}.getType();
return new Gson().fromJson(value, listType);
}
@TypeConverter
public static String fromList(List<String> list) {
Gson gson = new Gson();
String json = gson.toJson(list);
return json;
}
}
public class RowDataConverter {
@TypeConverter
public static List<Row> fromString(String value) {
Type listType = new TypeToken<List<Row>>() {}.getType();
return new Gson().fromJson(value, listType);
}
@TypeConverter
public static String fromList(List<Row> list) {
Gson gson = new Gson();
String json = gson.toJson(list);
return json;
}
}
Table
的情况下都试过了。分类为
@TypeConverters(StringDataConverter::class, RowDataConverter::class)
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "5000"
}
}
}
android {
defaultConfig {
javaCompileOptions {
annotationProcessorOptions {
arguments = [
"room.schemaLocation":"$projectDir/schemas".toString(),
"room.incremental":"true",
"room.expandProjection":"true"]
}
}
}
}
TablesDatabase.java:5: error: cannot find symbol
@androidx.room.TypeConverters(value = {StringDataConverter.class, RowDataConverter.class})
symbol: class StringDataConverter
TablesDatabase.java:5: error: cannot find symbol
@androidx.room.TypeConverters(value = {StringDataConverter.class, RowDataConverter.class})
symbol: class RowDataConverter
TablesDatabase.java:8: error: [RoomProcessor:MiscError] androidx.room.RoomProcessor was unable to process this class because not all of its dependencies could be resolved. Check for compilation errors or a circular dependency with generated code.
public abstract class TablesDatabase extends androidx.room.RoomDatabase {
@Entity(tableName = "tables")
public class Table {
@PrimaryKey(autoGenerate = true)
Integer id = 0;
String name = "";
String description = "";
String image = "";
List<String> colNames = new ArrayList<>();
List<Row> rows = new ArrayList<>();
public Table(String name, String description, String image, List<String> colNames, List<Row> rows) {
this.name = name;
this.description = description;
this.image = image;
this.colNames = colNames;
this.rows = rows;
}
public Table(String name, String description, String image, List<String> colNames) {
this.name = name;
this.description = description;
this.image = image;
this.colNames = colNames;
}
public Table(String name, String description, String image) {
this.name = name;
this.description = description;
this.image = image;
}
public Table() {}
@Override
public String toString() {
return "Table{" +
"id=" + id +
", name='" + name + '\'' +
", description='" + description + '\'' +
", image='" + image + '\'' +
", colNames=" + colNames +
", rows=" + rows +
'}';
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public List<String> getColNames() {
return colNames;
}
public void setColNames(List<String> colNames) {
this.colNames = colNames;
}
public List<Row> getRows() {
return rows;
}
public void setRows(List<Row> rows) {
this.rows = rows;
}
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "5000"
}
}
}
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "de.hsos.ma.adhocdb"
minSdkVersion 22
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true // This line
javaCompileOptions {
annotationProcessorOptions {
arguments = [
"room.schemaLocation":"$projectDir/schemas".toString(),
"room.incremental":"true",
"room.expandProjection":"true"]
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
def cardViewVersion = "1.0.0"
def recyclerViewVersion = "1.0.0"
def glideVersion = "4.11.0"
def roomVersion = "2.2.3"
def materialIoVersion = "1.2.0-alpha04"
def kotlinCoroutinesVersion = "1.3.3"
def materialDialogVersion = "3.1.1"
def gsonVersion = "2.8.6"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinCoroutinesVersion"
// room
kapt "androidx.room:room-compiler:$roomVersion"
implementation "androidx.room:room-runtime:$roomVersion"
implementation "androidx.room:room-ktx:$roomVersion"
//material io
implementation "com.google.android.material:material:$materialIoVersion"
// Card View
implementation "androidx.cardview:cardview:$cardViewVersion"
// Recyclerview
implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
//glide
implementation "com.github.bumptech.glide:glide:$glideVersion"
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
implementation "com.afollestad.material-dialogs:core:$materialDialogVersion"
implementation "com.google.code.gson:gson:$gsonVersion"
}
最佳答案
在您的表类中,您定义了 colNames
和 rows
变量为 List
在你的 TypeConverters 类中你使用了 ArrayList
数据类型。因为List
无法转换为 ArrayList
自动,然后 Room 无法为这些变量找到合适的 TypeConverter,这就是错误的来源。要修复它,您必须更改 ArrayList
至List
在这两个 StringDataConverter
和 RowDataConverter
类。
public class StringDataConverter {
@TypeConverter
public static List<String> fromString(String value) {
Type listType = new TypeToken<ArrayList<String>>() {}.getType();
return new Gson().fromJson(value, listType);
}
@TypeConverter
public static String fromArrayList(List<String> list) {
Gson gson = new Gson();
String json = gson.toJson(list);
return json;
}
}
public class RowDataConverter {
@TypeConverter
public static List<Row> fromString(String value) {
Type listType = new TypeToken<ArrayList<Row>>() {}.getType();
return new Gson().fromJson(value, listType);
}
@TypeConverter
public static String fromArrayList(List<Row> list) {
Gson gson = new Gson();
String json = gson.toJson(list);
return json;
}
}
StringDataConverter
和
RowDataConverter
正确上课。
关于Android Room - 找不到符号 @androidx.room.TypeConverters(value = {StringDataConverter.class, ...}),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59902066/
给定一个字符串,例如 s="##$$$#",我如何找到索引之前的“#”符号数等于“”数的索引$"符号在索引之后? 示例:如果 s="##$$$#",则输出将为 2。 解释:在索引 2 之前我们有 2
在本教程中,您将借助示例了解 JavaScript 符号。 JavaScript 符号 JavaScript ES6 引入了一种新的原始数据类型,称为 Symbol(符号)。符号是不可变的(不能更改)
在“函数编程的工艺”一书中,符号 '>.>' 将函数连接在一起,与 '.' 的方向相反。但是当我使用 ghci 实现它时,它显示了超出范围的错误 '>.>'。为什么?它是不再使用的旧符号吗? 最佳答案
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我需要从向量中删除 \"。这是我的数据: data <- c("\"https://click.linksynergy.com/link?id=RUxZriH*PWc&offerid=323058.1
我在 Nginx 配置中使用正则表达式来捕获文件 URL,但如果文件 URL 包含 # 符号,正则表达式模式将不会捕获它。 这里是nginx的配置部分。 location ~ ^/p/(?[\w\-=
如何使 & 符号在此图表的第一组条形/列下正确显示: http://jsfiddle.net/VxbrK/2/ 应该是“Apples & Oranges”而不是“Apples & Oranges”。
**在verilog中是什么意思? 我为测试台提供了以下逻辑 localparam NUM_INPUT_BITS = 1; localparam NUM_OUTPUT_BITS
我有一个使用正则表达式来验证电子邮件地址的方法。 public String searchFormail(String searchWord) { Pattern pattern = Patt
我想将一个字符串拆分为数字部分和文本/符号部分我当前的代码不包含负数或小数,并且表现得很奇怪,在输出的末尾添加了一个空列表元素 import re mystring = 'AD%5(6ag 0.33-
我有一些代码需要从数组中选择一个随机字符串,但它一直返回单个字母或数字。如何解决这个问题? var name = ["Yayek", "Vozarut", "Gezex",
我刚开始使用 Python,我在考虑应该使用哪种表示法。我读过 PEP 8关于 Python 符号的指南,我同意那里的大多数内容,除了函数名称(我更喜欢混合大小写风格)。 在 C++ 中,我使用匈牙利
在用 C# 编写代码时,我错误地在 if 语句中的变量前添加了一个符号(而不是感叹号)。 bool b = false; if (@b) { } 我很惊讶它编译成功,没有任何错误。 我想知道:上面的代
本文实例为大家分享了特殊字符替换电话号码中某一部分的方法,ios利用-号替换电话号码中间四位,供大家参考,具体内容如下 1、效果图 2、代码 rootviewcontroll
当我使用“x”和“z”作为符号时,这段代码没有问题: from sympy import * x, z = symbols('x z') y = -6*x**2 + 2*x*z**0.5 + 50*x
我需要从文本中删除标点符号: data <- "Type the command AT&W enter. in order to save the new protocol on modem;"
我有几个数字是 numeric 类。下面的例子。 df = c(12974,12412,124124,124124,34543,4576547,32235) 现在我想在每个数字前添加 '$' 符号而不
我有一个 highcharts 图例,其中符号以不同的大小显示,因为它们在实际图表中的大小不同。不幸的是,当数据点的大小增加时,它们也会在图例中增加。无论数据点大小如何,我都希望图例符号保持相同的大小
我需要使用包含平均值+-SD的标题。到目前为止,我只能得到以下信息: "Mean +- SD or N (%)" [1] "Mean +- SD or N (%)" 如何直接使用“+-”符号?您知道一
使用 XSLT 和 XPath 1.0,我有一个要转义的字符串以用于 URL,例如: one word & another 因此,描述元素的 text() 应该进行 URL 转义。 我该怎么做
我是一名优秀的程序员,十分优秀!