Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何像whatsapp一样在android上自动启动我的应用程序。应用程序必须在系统重新启动时启动...
你可能想写一个服务,它会读取互联网数据。要在引导写入广播接收器时启动它,它将在 BOOT_COMPLETED 或 ACTION_EXTERNAL_APPLICATIONS_AVAILABLE 上执行。您的 GUI 应用程序应该使用 AIDL 接口与服务通信 - 如果服务将在与应用程序相同的进程中运行,则不需要 AIDL。