我有一个使用ListView显示列表的Android应用程序,并且有一个操作栏按钮来清除所述列表。我决定添加一个确认对话框,以便人们不会意外删除所有条目,而且我遇到了问题。如果我在onclick中使用setListAdapter来获得" yes"对话框中的按钮,它不会编译。如果我在onclick之外使用它,它将工作但不刷新列表,直到用户退出活动并返回到它,这显然是不合适的。这是我的方法,当"清除列表"按下操作栏按钮,其中包含内部按钮的相关onclick。 我有一种感觉,我不应该使用"这个"在setListAdapter中,因为对话框,这不再对应于我认为的listview活动?但我不知道该放什么。
public void clearTrigger(MenuItem item) {
//Set up a dialog with two buttons to verify that the user really wants to delete
everything
confirm = new Dialog(display.this);
confirm.setContentView(R.layout.conf);
confirm.setTitle("Confirm deletion");
yes = (Button)confirm.findViewById(R.id.yes);
//If the user says yes, then delete everything
yes.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//Remove everything from Hours.
Hours.clear();
String tempH = " ";
String tempW = " ";
//Then save it again in it's new, empty state so that it doesn't reappear the next time the app is run.
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getBaseContext());
SharedPreferences.Editor edit = prefs.edit();
edit.putString("SAVEDATA", TextUtils.join(",", Hours));
edit.remove("totalh");
edit.remove("totalw");
edit.commit();
//And finally... refresh the list view - doesn't work
setListAdapter(new ArrayAdapter<String>(this, R.layout.activity_list, R.id.listText, Hours));
confirm.dismiss();
}
});
confirm.show();
}
答案 0 :(得分:1)
ArrayAdapter
构造函数的第一个参数是Context
,因此您需要将Activity传递给它,类似于new ArrayAdapter<String>(MyActivity.this, ...)
。现在,您将OnClickListener
的实例传递给它,这就是它给编译器错误的原因。
但更新ListView的最佳方法是使用adapter.add
和adapter.remove
等方法对ArrayAdapter本身进行更改,然后调用adapter.notifyDataSetChanged()
。在您的情况下,您可以致电adapter.clear()
。