我有以下代码。 我想要实现的是在单击一个条目时更新显示的列表,这样我就可以遍历列表了。 我在stackoverflow上发现了两种未注释的方法,但是都不起作用。 我也有建议在数据更新上创建一个新的ListActivity,但这听起来像浪费资源?
编辑:我自己找到了解决方案。您需要做的就是调用“SimpleCursorAdapter.changeCursor(new Cursor);”。没有通知,UI-Thread中没有任何东西。import android.app.ListActivity;
import android.database.Cursor;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
public class MyActivity extends ListActivity {
private DepartmentDbAdapter mDbHelper;
private Cursor cursor;
private String[] from = new String[] { DepartmentDbAdapter.KEY_NAME };
private int[] to = new int[] { R.id.text1 };
private SimpleCursorAdapter notes;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.departments_list);
mDbHelper = new DepartmentDbAdapter(this);
mDbHelper.open();
// Get all of the departments from the database and create the item list
cursor = mDbHelper.fetchSubItemByParentId(1);
this.startManagingCursor(cursor);
// Now create an array adapter and set it to display using our row
notes = new SimpleCursorAdapter(this, R.layout.department_row, cursor, from, to);
this.setListAdapter(notes);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
// get new data and update the list
this.updateData(safeLongToInt(id));
}
/**
* update data for the list
*
* @param int departmentId id of the parent department
*/
private void updateData(int departmentId) {
// close the old one, get a new one
cursor.close();
cursor = mDbHelper.fetchSubItemByParentId(departmentId);
// change the cursor of the adapter to the new one
notes.changeCursor(cursor);
}
/**
* safely convert long to in to save memory
*
* @param long l the long variable
*
* @return integer
*/
public static int safeLongToInt(long l) {
if (l < Integer.MIN_VALUE || l > Integer.MAX_VALUE) {
throw new IllegalArgumentException
(l + " cannot be cast to int without changing its value.");
}
return (int) l;
}
}
答案 0 :(得分:1)
您需要在数据发生变化时通知您的ListVIew。
adapter.notifyDataSetChanged();
在你的情况下。
notes.notifyDataSetChanged();
希望这可以帮助你...
答案 1 :(得分:0)
首先,每次打开新光标时,请关闭上一个光标并管理新光标。
其次,你改变你的光标,但你的光标适配器是如何知道的?它没有。您可以创建一个可以更改其光标的适配器,也可以围绕新光标创建一个新的SimpleCursorAdapter并将其插入列表。
但你是对的,你不应该重新创建列表小部件。