Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have Activity named whereActity which is having child dialogs as well.

now i want to display this activity is as a dialog for another activity..

how can i do that ??

enter image description here

share|improve this question
1  
detecting current location – datayeah Mar 28 at 15:22

2 Answers

up vote 122 down vote accepted

to Start activity as dialog i defined

<activity android:theme="@android:style/Theme.Dialog" />

now when i startActivity() it display like dialog and parent activity display on back, i wan a button to whom i click dialog should dismiss and parent activity should display without refreshing the page.

share|improve this answer
60  
Using the android:theme="@android:style/Theme.Dialog" is the way to go but don't forget to use excludeFromRecents=true or else your dialog will appear in the Recently Used Apps (hold the Home key). – Emmanuel Nov 25 '10 at 14:22
I've also had difficulty with the size of the dialog if using LinearLayout as the root layout. Using RelativeLayout helps if you're going to be setting requestWindowFeature(Window.FEATURE_NO_TITLE) or getWindow().setFeatureDrawableResource(Window.FEATURE_NO_TITLE, android.R.drawable.ic_dialog_alert) – dell116 Dec 30 '11 at 5:40
4  
i have difficulty related to the activity as dialog.. i made the activity as dialog but the problem is when i click outside the the activity it automatically get closed..??? is there any solution related to this..?????? – S.K. Apr 3 '12 at 4:42
Thanks Faisal. It helped me a lot. – Shraddha Apr 12 '12 at 12:08
1  
@Emmanuel, it has to be android:excludeFromRecents="true" note the double quotes – Sandeep Mar 10 at 8:37

If your activity is being rendered as a dialog, simply add a button to your activity's xml,

<Button
    android:id="@+id/close_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Dismiss" />

Then attach a click listener in your Activity's Java code. In the listener, simply call finish()

Button close_button = (Button) findViewById(R.id.close_button);
close_button.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        finish();
    }
});

That should dismiss your dialog, returning you to the calling activity.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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