简体   繁体   English

如何自动启动类似whatsapp的Android应用程序?

[英]How to Autostart an Android Application like whatsapp?

How I autostart my app on android like whatsapp. 我如何像whatsapp一样在android上自动启动我的应用程序。 Application must start when system restart... 系统重新启动时必须启动应用程序...

You might want to write a service, it will read internet data. 您可能想编写一项服务,它将读取互联网数据。 To start it on boot write broadcast receiver that will execute on BOOT_COMPLETED or ACTION_EXTERNAL_APPLICATIONS_AVAILABLE. 要在启动时启动它,请编写将在BOOT_COMPLETED或ACTION_EXTERNAL_APPLICATIONS_AVAILABLE上执行的广播接收器。 Your GUI app should comunicate with service using AIDL interface - if service will run in the same process as application, then no AIDL should be required. 您的GUI应用程序应该使用AIDL界面与服务进行通信-如果服务将在与应用程序相同的进程中运行,则不需要AIDL。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM