Background application without ui

末鹿安然 提交于 2019-12-03 13:19:08

问题


I am new to android development. I want to make one background application, so that it keeps running in background, and it's without any UI, and even its icon do not appear on desktop. In short it's a stealth application.
Is it possible?


回答1:


This is certainly possible. To create an app that does not have an icon in the launch pad, just remove the Activity with the android.intent.category.LAUNCHER category from the AndroidManifest.xml.

To implement your background application it strongly depends on what you want to do. You can create a Service for long running tasks, BroadcastReceivers to react to specific events or Activities with intent filters.

Be aware, however, that your application will be visible in both the file system and in the settings under 'Manage Applications'.




回答2:


Yeah it's possible look up Service

Read more about the service in tutorials

ServicesDemo - Using Android Services

How Android Services Work

Android Service creation and consumption



来源:https://stackoverflow.com/questions/3370659/background-application-without-ui

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