如果用户在警报对话框中按“是”按钮,如何在列表中添加项目,而如果按“否”则不添加该项目
我正在制作一个应用程序,如果用户选择 子菜单项我弹出一个警报对话框,要求他确认 他是否希望将该项目保存在他的列表中,如果他愿意,则保存它 按“是”,如果按“否”则不添加。
I am making an app in which if a user selects a
submenu item I pop up an Alert dialog which asks his confirmation
whether he wishes to save that item in his list and saves it if he
presses yes and doesn't add it if he presses no.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用它来显示警报:
You can use this to show alert:
您将从对话框中获取的元素添加到用于提供
Adapter
的 ArrayList,然后提供cursor = new yourAdapter(YourClass.this.getBaseContext(), android.R.layout。 simple_list_item_1, dataList);
调用
cursor.notifyDataSetChanged();
告诉列表重新填充新数据;You add the element you get from the dialog to the ArrayList you use to feed your
Adapter
then feed thecursor = new yourAdapter(YourClass.this.getBaseContext(), android.R.layout.simple_list_item_1, dataList);
Call
cursor.notifyDataSetChanged();
which tells the list to repopulate with the new data;