I have an Activity named whereActity which has child dialogs as well. Now, I want to display this activity as a dialog for another activity.
whereActity
How can I d
1 - You can use the same activity as both dialog and full screen, dynamically:
Call setTheme(android.R.style.Theme_Dialog) before calling setContentView(...) and super.oncreate() in your Activity.
setTheme(android.R.style.Theme_Dialog)
setContentView(...)
super.oncreate()
2 - If you don't plan to change the activity theme style you can use
(as mentioned by @faisal khan)