I\'d like to close a dialog window in my android app by simply touching the screen.. is this possible? If so, how?
I\'ve looked into setting some \"onClickEven\" on
You can use dialog.setCanceledOnTouchOutside(true); which will close the dialog if you touch u=outside the dialog.
dialog.setCanceledOnTouchOutside(true);