How do they do it? Dialogs over home screen

前端 未结 4 2086
时光取名叫无心
时光取名叫无心 2020-12-30 09:19

I\'m writing an Android application and I would like to place a dialog or view over the home screen so that a user can enter text without jumping into my full application. I

4条回答
  •  [愿得一人]
    2020-12-30 09:54

    They are launching an activity, but they've set the activity's theme so it looks like a Dialog.

    In your manifest, you have to add something like this under the tag: android:theme="@android:style/Theme.Dialog"

提交回复
热议问题