问题描述
- Toast Alert Dialog不能显示在ListView中
-
我创建了一个程序,可以在 listview 中添加 items。我做了一个确认功能,如果有人输入相同的信息就会显示一个警告。Toast.makeText(getApplicationContext(), "Serial No Already Exist..",Toast.LENGTH_LONG);
但现在在模拟器上运行时,不能实现。我觉得代码没有问题啊?请大家给予指点。
解决方案
你没show(); 啊 你只是定义了一个Toast而已,初学者总犯这个错误,这样写:Toast.makeText(getApplicationContext(), "Serial No Already Exist..",Toast.LENGTH_LONG).show();
时间: 2024-11-30 09:51:12