Android Activity as a dialog

后端 未结 10 2590
轮回少年
轮回少年 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:27

    Set the theme in your android manifest file.

    
    

    And set the dialog state on touch to finish.

    this.setFinishOnTouchOutside(false);
    

提交回复
热议问题