在将记录插入 sqllite db 后,我想从另一个活动中调用 listview 适配器。
我不能调用 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();
}