我SimpleCursorAdapter
用来管理对数据库的查询,然后在ListView
.
这是我的代码:
database.open();
ListView listContent = (ListView)findViewById(android.R.id.list);
Cursor c = database.getData();
startManagingCursor(c);
String[] from = new String[]{Database._GROUP_NAME};
int[] to = new int[]{android.R.id.text1};
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, query, from, to);
listContent.setAdapter(adapter);
database.close();
虽然乍一看,它按预期工作,但我相信这不应该是继续的方式,因为有CursorAdapter
.
我知道这是一个菜鸟问题,但是自从现在开始在 Android 中编程以来,我仍然不太了解。
我怎样才能将它从使用传递SimpleCursorAdapter
到CursorAdapter
?已经在互联网上搜索,但无法理解如何做到这一点。
不问代码只是一些方向。
谢谢
收藏夹
更新以下主要评论
database.open();
ListView listContent = (ListView)findViewById(android.R.id.list);
Cursor c = database.getData();
MyAdapt cursorAdapter = new MyAdapt(this, query);
listContent.setAdapter(adapter);
database.close();
MyAdapt 类:
public class MyAdapt extends CursorAdapter {
private final LayoutInflater mInflater;
public MyAdapt(Context context, Cursor c) {
super(context, c);
mInflater = LayoutInflater.from(context);
mContext = context;
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
TextView groupName = (TextView) view.findViewById(android.R.id.text1);
groupName.setText(cursor.getString(cursor
.getColumnIndex(Database._GROUP_NAME)));
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
final View view = mInflater.inflate(
android.R.layout.simple_list_item_1, parent, false);
return view;
}
}
这是正确的方法吗?
收藏夹