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 ??

|
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 ??
|
|||||
|
|
to Start activity as dialog i defined
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. |
|||||||||||||||||
|
|
If your activity is being rendered as a dialog, simply add a button to your activity's xml,
Then attach a click listener in your Activity's Java code. In the listener, simply call
That should dismiss your dialog, returning you to the calling activity. |
|||
|
|