Android: AlertDialog not closing on Cancel() nor on Dismiss()
Android: AlertDialog not closing on Cancel() nor on Dismiss() I have implemented an AlertDialog, that works as a message dialog. When the user types the messages, he can click on the button "SEND" or the button "CANCEL". The button "SEND" works fine, but the cancel button doesn't work for some reason. findViewById(R.id.contactfab).setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { final AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(Frontpage.this); final AlertDialog dialog = dialogBuilder.create(); LayoutInflater inflater = Frontpage.this.getLayoutInflater(); View dialogView = inflater.inflate(R.layout.dialog_contact, null); dialogBuilder.setView(dialogView); final EditText editText = (EditText) dialogView.findViewById(R.id.contactText); editText...