0

I have a ListActivity act as dialog. It's fine. when i select item click show another listactivity as dialog. But i want to show second listactivity as pop up window based activity. Already i have set manifest file android:theme="@android:style/Theme.Dialog". Two list activity show but pop up windows not indicate specific item. is it possible we can do? Already have this question in stackoverflow. I know some code are missed. what are the steps. pls help me. Advanced thanks,

2 Answers2

0

Android activity can create as dialog and. activity can run single screen only. multiple activity run on fragment only. you can't make popup window as a activity.

0

Set below property in manifest for the activity which you want to be open as dialog:

<activity android:theme="@android:style/Theme.Dialog" />
mark
  • 503
  • 5
  • 27