Android Activity as a dialog

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

    Some times you can get the Exception which is given below

    Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

    So for resolving you can use simple solution

    add theme of you activity in manifest as dialog for appCompact.

    android:theme="@style/Theme.AppCompat.Dialog"
    

    It can be helpful for somebody.

提交回复
热议问题