I'm using an account picker for my Android App.
Intent intent = AccountPicker.newChooseAccountIntent(null, null, new String[] { GoogleAuthUtil.GOOGLE_ACCOUNT_TYPE }, false, null, null, null, null);
startActivityForResult(intent, REQUEST_CODE_EMAIL);
This is all working fine. But i want to know, if it is possible to force the user to hit 'OK' or 'Cancel'. Currently if the user clicks outside this dialog, it's the same as hitting cancel.
Is there a way to make the dialog modal to force the user click either 'ok' or 'cancel'.
In my opinion it's too easy to cancel this dialog, somethimes this happens unintentionally and then the dialog is gone.