I am working with android.I am looking to display my oncreate view as a popup window instead of setcontent view. How Can I make On create view as popup window in android???
Asked
Active
Viewed 218 times
0
-
set `Theme` as a `Dialog` to your activity – M D Feb 19 '14 at 05:44
-
You mean like a dialog – Anas Reza Feb 19 '14 at 05:44
-
http://stackoverflow.com/questions/5944987/popupwindow-in-android – Shailendra Madda Feb 19 '14 at 05:44
1 Answers
0
Apply this to your activity tag in manifest
android:theme="@android:style/Theme.Dialog"
Then layout set with setContentView, it will be shown as Dialog

Sonali8890
- 2,005
- 12
- 16