I have an Alerts class where I define all alert windows of my app with methods in this forms
public static void Alert1(Context con) {
AlertDialog.Builder builder = new AlertDialog.Builder(con);
builder.setTitle("my title");
builder.setIcon(android.R.drawable.ic_dialog_info);
DialogListner listner = new DialogListner();
builder.setMessage("my message");
builder.setPositiveButton("ok", listner);
AlertDialog diag = builder.create();
diag.show();
}
Now I want to create in a similar way also an Alert windows with a checkBox "Don't show this again" that if is selected avoid the view of this Alert