1
我想將對象插入到contentValues中。對象的結構是這樣的:將複合對象插入到ContentValues中
public class A {
String x;
String y;
object B;
}
我想將對象插入到contentValues中。對象的結構是這樣的:將複合對象插入到ContentValues中
public class A {
String x;
String y;
object B;
}
你不能把任意對象爲ContentValues
。您可以在ContentValues
中查看documentation。我看到的唯一選擇是如果您可以將對象轉換爲字節數組和從字節數組轉換。