I have an Activity named whereActity which has child dialogs as well. Now, I want to display this activity as a dialog for another activity.
whereActity
How can I d
Use this code so that the dialog activity won't be closed when the user touches outside the dialog box:
this.setFinishOnTouchOutside(false);
requires API level 11