我想在將記錄插入到sqllite db後從另一個活動調用listview適配器。如何從另一個活動調用ListView適配器進行刷新 - notifyDataSetChanged()
我無法調用adapter.notifyDataSetChanged()方法。什麼是最好的方式來做到這一點。
public void onClick(View v) {
TextView item_name;
item_name=(TextView) findViewById(R.id.eItemName);
Log.d("Insert: ", "Inserting ..");
db.add_item(new Item(item_name.getText().toString()), getApplicationContext());
// I want to call the method HERE!!!!
finish();
}
如果沒有該活動的實例,如何更改數據集?您可以手動啓動活動,並在活動的onCreate中更新數據庫中的列表項。\ – Li3ro 2012-07-21 11:32:56