Android Service and AlertDialog Activity

岁酱吖の 提交于 2019-12-06 16:12:10

The easiest way would probably be to let the service pop up a new activity. Either you make the activity itself look like a dialog by adding the proper theme in the AndroidManifest.xml:

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

or you make a completely transparent activity that shows a dialog when it starts.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!