问题标签 [bootcompleted]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
770 浏览

android - 为什么基于 GPS 的 android 应用程序未安装在基于辅助 GPS (A-GPS) 的 android 设备中?

它显示,错误指出“没有符合条件的应用程序安装设备”

设备规格如下,

型号:联想 A369i

安卓操作系统版本:4.2.2

我在 android mainfest 文件中的权限低于

请建议

0 投票
1 回答
967 浏览

android - 禁用后应用程序仍在运行

我已经安装了一个我作为系统应用程序编写的应用程序,在收到 ACTION_BOOT_COMPLETED 后它会运行一项服务。

该应用程序运行良好,但是,我想禁用它(而不是完全删除它)。

所以我在命令行上写了“adb shell pm disable [The package name]”,重启后,即使我不再在菜单上看到我的应用程序,我仍然收到一条消息“不幸的是 [myApp] 已停止”。

日志猫:

这是否意味着我的应用程序仍然可以识别 boot_completed 但由于它被禁用而无法运行?或者是别的什么?

提前致谢!

0 投票
1 回答
566 浏览

android - Android 接收器未按预期运行

老实说,他们什么也没做。首先让我说我知道 Android 在 3.1 中重新设计了接收器,特别是启动控制。我知道他们这样做是为了使 ACTION_BOOT_COMPLETED 不能使用,除非该应用程序先前已由用户启动。然而,人们已经成功地在当前的应用程序中使用它们,但我从来没有因为我的 BOOT_COMPLETED 或我的 SHUTDOWN 而击中我的接收器。

快速编辑 - 请查看这篇文章的底部以获取更正的 Shutdown Receiver,我已经让它工作了,现在我正努力让 BOOT_COMPLETED 工作。

我的清单:

...

现在我实现的接收器类相当简单:

BOOT_COMPLETED 接收器(不工作的那个)

根据我所看到的解决方案,我尝试了不同的事情,例如改变我的启动活动以包括

或将其包含在清单中的引导接收器意图过滤器中

似乎没有任何效果。当日志插入我的接收器方法时,它们永远不会被命中。显然人们仍在相当频繁地使用这两个接收器,这就是为什么我无法理解为什么它们都不起作用的原因。我的注册是否遗漏了什么?

- 编辑 -

我已经解决了我的关机接收器的问题。首先,我愚蠢地忘记了标签的 ACTION_ 部分。其次,HTC 有单独的关闭方法,在我的情况下,我需要在我的 Receiver 请求中添加一个意图过滤器:

现在我的 Shutdown Receiver 工作了,但 Boot Completed Receiver 仍然没有运气。

0 投票
2 回答
5922 浏览

android - 如果安装了另一个应用程序,则 BOOT_COMPLETED 接收器不工作

基本上我已经设置了一个引导接收器,如下所示:

现在这似乎大部分时间都可以正常工作。它会在正常启动时启动并继续做它需要做的事情。但是,如果我将它与我开发的另一个应用程序结合使用,尽管仍在注册,但接收器永远不会被调用。

我总是确保首先运行应用程序以便它被注册,所以不是这样。如果我卸载其他应用程序,它可以工作。他们确实有一个共享用户,但我认为这与它没有太大关系,因为我在许多可以很好地组合使用的应用程序中使用它。这只是它无法相处的一个特定应用程序。

编辑:

我确实有<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />,否则它根本不起作用。

以及引导接收器本身:

}

需要指出的是,这不是 Google Play 商店或其他任何地方的应用程序。这是一个非常具体的应用程序,仅部署到我们作为公司拥有的设备上。

编辑2:

我在日志中找到了一些帮助。安装其他应用程序后,我收到以下消息:

如果没有其他应用程序,我会收到以下消息:

0 投票
0 回答
104 浏览

java - How to start an app on reboot if USB_HOST_ATTACHED and ACTION_BOOT_COMPLETED

I'm writing an app that needs to start up automatically when a device is connected to a tablet in USB Host Mode. In addition to that I want my app to start on tablet reboot after boot_completed if the usb device is attached. Having need to implement these two functionalities I'm in a bit of a dead lock situation. It works all fine when I plug a usb device the app brings up itself without a problem. but on reboot i'm running in to an issue where the application starts itself before the boot_complete is recieved, and that is because the usb device is already attached to the tablet. This is made worse in kitkat 4.4.2 as they have delayed processing the boot_complete state by doing it serially where as 4.3 did it parallely on reboot.

So how can I get the app to start on reboot after bootup is completed rather than before boot_up is completed while having the USB device attached.

Many thanks

0 投票
2 回答
110 浏览

android - 服务未在android中运行

我想编写代码来接收短信,因为我已经做了一个 BroadcastReceiver 活动,甚至做了服务。但是,我的服务没有启动。我在 Service 的 onStart 方法上显示了 toast。

这是我的服务类:

Android 清单文件:

我不知道出了什么问题。请帮助您的建议。

0 投票
1 回答
104 浏览

android - 电话重启时的警报管理器

我正在为我的 java 主题开发一个提醒应用程序。

我正在使用此代码来创建待处理的警报,这是代码。

我已经设置了我的 AndroidManifest.xml 以在启动时添加我的接收器

最后,这是我的 PollReceiver.class

但它似乎仍然没有重新加载我的未决警报。

任何疯狂的猜测家伙?

0 投票
2 回答
626 浏览

android - BOOT_COMPLETED 不适用于 Android 4.2.2

我正在开发一个应用程序,我需要在重启设备后重置警报。该代码在模拟器中运行良好,但在我的 Android 版本 4.2.2 的移动设备上无法运行。

我在启动时设置了一个通知,当我在模拟器上运行它而不是在我的设备上运行它时会显示通知。

请帮忙!

0 投票
1 回答
229 浏览

android - How do I start service on Reboot?

I am trying to automatically start an Android service when the device reboots. I have tried to accomplish this using Receive_Boot_Complete permission, BroadcastReceiver with Boot_Complete intent action with no success. I'm very well aware that after Android 3.0 apps are placed in a stopped state on reboot and therefore no receivers are able to run. However, there are several mobile security apps such as Lookout that are run services and processes on reboot. How are they able to accomplish this?

0 投票
1 回答
160 浏览

android - 启动后服务不启动

如果我手动启动,我的 Android 应用程序中有一项服务可以完美运行,但是我需要在启动时启动该服务,并且我无法在重启手机后自动启动它,我尝试了几个教程但没有任何效果。

这是我的清单代码:

这是广播接收器代码: