Android Activity as a dialog

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

    Use this code so that the dialog activity won't be closed when the user touches outside the dialog box:

    this.setFinishOnTouchOutside(false);
    

    requires API level 11

提交回复
热议问题