SimpleCursorAdapter是一种从数据库中提取数据并显示数据的快捷方法。但是我也有JSON数据存储在数据库中,并希望Adapter也在JSON中显示数据。
SimpleCursorAdapter adapter = new SimpleCursorAdapter(
ctx,
R.layout.list,
result,
new String[]{"name", "properties"}, //properties is a JSON string
new int[]{R.id.entry_title, R.id.properties},
0
);
有没有办法实现这一目标,还是我必须为此创建自己的适配器?