Your listener is not called.
Replace:
Button closeButton = (Button) layout.findViewById(R.id.about_close_button);
with:
Button closeButton = (Button) dialog.findViewById(R.id.about_close_button);
and delete the two lines above ( LayoutInflater inflater = ...and View layout = ...).
source
share