Android Activity as a dialog

后端 未结 10 2588
轮回少年
轮回少年 2020-11-22 02:31

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.

How can I d

10条回答
  •  南方客
    南方客 (楼主)
    2020-11-22 03:34

    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.

    2 - If you don't plan to change the activity theme style you can use

    
    

    (as mentioned by @faisal khan)

提交回复
热议问题