Android: how to create a transparent dialog-themed activity

前端 未结 6 1290
清歌不尽
清歌不尽 2020-12-03 05:04

My original goal here was a modal dialog, but you know, Android didn\'t support this type of dialog. Alternatively, building a dialog-themed activity would possibly work.

6条回答
  •  既然无缘
    2020-12-03 05:54

    The easiest way that I have found is to set the activity's theme in the AndroidManifest to android:theme="@android:style/Theme.Holo.Dialog" then in the activity's onCreate method call getWindow().setBackgroundDrawable(new ColorDrawable(0));

提交回复
热议问题