alertDialog
当我在模拟器或设备上强制关闭我的应用程序时,当我转到该设备或模拟器上的应用程序以再次启动我的应用程序时,我遇到了另一个问题alertDialog
。不久前,我在此链接中遇到了与此类似的问题,警报对话框的共享首选项使我的应用程序无响应,我认为我的所有问题都一劳永逸地解决了。所以有人可以帮我解决这个问题。
final SharedPreferences settings = getSharedPreferences("pref_name", 0);
("installed", false);
final AlertDialog.Builder alertDialog = new AlertDialog.Builder(this);
alertDialog.setTitle("Title");
alertDialog.setIcon(R.drawable.ic_launcher);
alertDialog.setAdapter(new MyAdapter(), null);
alertDialog.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
SharedPreferences.Editor editor = settings.edit();
editor.putBoolean("installed", true);
editor.commit();
}
});
alertDialog.show();
如果您需要我详细说明,请告诉我