0

I have an android application where all the logic is in a dialog box. How do I just have this dialog as the activity and avoid creating a normal activity/view?

1 Answers1

1

Make your Activity have a Dialog theme placing this in the AndroidManifest:

<activity android:theme="@android:style/Theme.Dialog">

Similar question: Android Activity as a dialog.

Community
  • 1
  • 1
Macarse
  • 91,829
  • 44
  • 175
  • 230