我有Activity
已提交Button
。点击“提交”后,系统会显示AlertDialog
,其中包含“保存Button
”。现在单击列表中的项目,将显示Button
。我选择一些值并单击alertdialog上的save。现在保存我需要更新列表中的项目字符串。但它不起作用。
保存在AlertDialog
我已拨打
Intent intent = new Intent(EditPropertyActivity.this,
SetProperties.class);
startActivity(intent);
finish();
如何确保不再次调用活动并更新ui。
答案 0 :(得分:2)
由于您在保存功能中调用了finish(),因此需要再次调用该活动。
而不是在解雇之前编辑您的列表并关闭您的对话框。 在保存按钮单击功能
更新您的ArrayList
listviewObject.getAdapter()notifyDataSetChanged();