Tag: bootcompleted

正在广播的Android adb shell:组件名称错误

我试图“模拟”重新启动(或其他任何与adb shell am ),我无法弄清楚如何引用我的组件。 再说一遍,也许我甚至不明白一个组件是什么意思。 下面我首先包括一些不起作用的示例命令,然后是我的清单。 请注意,“电话”启动时会成功调用StartupReceiver。 我只是想在没有完全重新启动的情况下重新触发它。 失败的ADB命令: $ ./adb shell am broadcast -a android.intent.action.BOOT_COMPLETED -c android.intent.category.HOME -n net.fstab.checkit_android.StartupReceiver <help snipped> Error: Bad component name: net.fstab.checkit_android.StartupReceiver $ ./adb shell am broadcast -a android.intent.action.BOOT_COMPLETED -c android.intent.category.HOME -n .StartupReceiver <help snipped> Error: Bad component name: .StartupReceiver $ ./adb shell am broadcast -a android.intent.action.BOOT_COMPLETED -c android.intent.category.HOME -n […]

Android启动时的服务

我需要在启动时启动服务。 我搜查了很多。 他们在谈论Broadcastreceiver。 由于我是Android开发新手,我没有清楚的了解Android上的服务。 请提供一些源代码。

BOOT_COMPLETED不工作的Android

首先,我知道有几百个这样的问题,但我已经检查了一会儿,但仍然找不到任何解决办法。 我已经看到这个答案说,BOOT_COMPLETED不发送到应用程序,除非用户启动您的应用程序,Android 3.1之后的版本但我仍然看到一些应用程序正在这样做,一定有办法。 我真的需要处理它,否则我也反对做一些没有用户交互的东西。 所以这是我的AndroidManifest: <manifest … > <!– to be activated service on boot is completed –> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <!– Keeps the processor from sleeping when a message is received. –> <uses-permission android:name="android.permission.WAKE_LOCK" /> <application … > <!– to receive data when boot completed –> <receiver android:name="myPackage.BootReceiver" android:enabled="true" android:exported="true" android:permission="android.permission.RECEIVE_BOOT_COMPLETED" > <intent-filter> <action […]