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!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Theme.Dialog sets some padding so it does not overlay the whole screen . if you are interested in destroy the dialog on click at this boundary area , set a touch listener to parent layout , compare X,y with appropriate number so ensure thats its desired region .

link|improve this answer
So, first by adding maybe "linearLayout.setOnClickListener(......)" and then "if(position==legalPosition) {...}" it should be possible? I will try it. – robinson1 Nov 14 '11 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.