I have an activity in my project, which is shown as a DialogActivity by this entry in the manifest:
<activity android:name=".ActivityDialog" android:theme="@android:style/Theme.Dialog"> </activity>
The Activity doesn't overlay the whole screen, so my question is:
Is it possible to destroy this DialogActivity by clicking besides it? So as it is possible at a normal Dialog?
Thanks!