次のコードを使用して、ListView
. の位置が保持されるように変更するにはどうすればよいListView
ですか?
protected void refreshListView() {
datasource = new DataSource(this);
try {
datasource.ScanVirtualSystems();
} catch (Exception e) {
Log.w("Exception", "exception in ScanVirtualSystems() method");
}
MatrixCursor cursor;
cursor = datasource.getnameList();
startManagingCursor(cursor);
String[] from = { "name", "desc", "status", "path", "folder",
BaseColumns._ID };
int[] to = { R.id.name, R.id.desc, R.id.status, R.id.path };
final CustomSCAdapter adapter = new CustomSCAdapter(
Mactivity.this, R.layout.row, cursor, from, to);
adapter.notifyDataSetChanged();
setListAdapter(adapter);
}