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,
Asked
Active
Viewed 2,087 times
0
-
why not using fragments – nobalG Jul 18 '14 at 10:02
-
fragment can show two list dialog activity. how to do pop up window d – user3825313 Jul 18 '14 at 10:04
-
may be here http://stackoverflow.com/questions/18867029/how-to-show-pop-up-window-in-android – nobalG Jul 18 '14 at 10:06
-
where i can place it. such as oncreate, on start. – user3825313 Jul 18 '14 at 10:07
-
how to show either side. – user3825313 Jul 18 '14 at 10:08
2 Answers
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.

user3825313
- 29
- 6
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