Pop up dialog in Android home screen

后端 未结 4 1694
面向向阳花
面向向阳花 2020-12-16 06:46

Is it possible to show pop up dialog (AlertDialog) in home screen on the android device via services?

4条回答
  •  一生所求
    2020-12-16 07:11

    You could create an Activity with the Theme.Dialog theme. In your AndroidManifest.xml file add the theme to the activity, like this:

    
    

    From your service simply start this Activity. You will have to start the activity with the Intent.FLAG_ACTIVITY_NEW_TASK flag. See How to start an Activity from a Service

提交回复
热议问题