我有两个活动 - 一个显示来自SQLite的数据,另一个则在那里添加数据。我可以用标签在它们之间切换。问题是,如果我添加一个新项目,我不知道如何刷新列表,因为它在不同的活动类中,我无法在我的添加类中访问它。怎么解决这个问题?
这是我的两个班级:
列表:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_1);
final ShoppingSQL shoppingSQL = new ShoppingSQL(this);
final List<ShoppingData> list = shoppingSQL.getAll();
final ArrayAdapter<ShoppingData> adapter = new ArrayAdapter<ShoppingData>(
this, android.R.layout.simple_list_item_1, list);
setListAdapter(adapter);
this.getListView().setLongClickable(true);
this.getListView().setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> parent, View v, int position, long id) {
shoppingSQL.delete((int)list.get(position).getId());
adapter.remove(list.get(position));
adapter.notifyDataSetChanged();
return true;
}
});
}
添加:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_2);
}
public void ButtonOnClick(View v) {
ShoppingSQL shoppingSQL = new ShoppingSQL(this);
ShoppingData data = new ShoppingData();
data.setName("test");
shoppingSQL.add(data);
Dialog d = new Dialog(this);
d.setTitle("Added!");
d.show();
}
我也有一点问题。在我的第一个(列表)活动中,当我在“onLongClick”中访问它们时,Eclipse使每个变量都成为最终变量 - 为什么这样可以避免?此外,对我应该注意什么以及使我的代码更好或者我做的任何其他错误的任何评论都会非常好。
答案 0 :(得分:3)
我会保持简单。只需将Add class中的intent发送到List类,然后再使用新项填充列表。
答案 1 :(得分:2)
您要使用的是连接到SQLite DB的CursorLoader(请参阅http://developer.android.com/reference/android/content/CursorLoader.html)。然后,您可以使用例如其适配器与CursorLoader同步的ListView。使用侦听器模式自动完成(或多或少)。
在添加数据的活动中,您需要通知所有侦听器数据已更改。通常,您可以通过调用 notifyChange (请参阅http://developer.android.com/reference/android/content/ContentResolver.html#notifyChange%28android.net.Uri,%20android.database.ContentObserver,%20boolean%29)来执行此操作。
您可能还想考虑实施自己的内容提供商。