gpt4 book ai didi

android - 如果设备使用硬件按钮重新启动,则不会调用 BOOT_COMPLETED

转载 作者:行者123 更新时间:2023-11-29 01:33:53 26 4
gpt4 key购买 nike

我已经注册了一个名为 CheckReceiver 的 BroadcastReceiver:-

 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.captchachecker"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="21" />

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<application
android:icon="@drawable/ic_launcher"
android:installLocation="internalOnly"
android:label="@string/app_name"
>
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<receiver android:name=".CheckReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
</receiver>

</application>

</manifest>

CheckReceiver代码:-

public class CheckReceiver extends WakefulBroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
Log.d("Check Receiver", "Captcha Receiver called");

Toast.makeText(context, "Receiver called", Toast.LENGTH_SHORT).show();
Intent service = new Intent(context, CheckService.class);
startWakefulService(context, service);
}
}

问题是当我按下电源按钮并选择关机选项时,BroadcastReceiver 没有被调用。如果我使用以下方式重新启动设备:-

adb shell am broadcast -a android.intent.action.BOOT_COMPLETED

然后 BroadcastReceiver 被调用。我已阅读有关为 BroadcastReceiver 至少启动一次 Activity 并在检查前启动 Activity 2-3 次的信息。

最佳答案

原来我用过:-

adb shell pm set-install-location 2 

过去在我的设备上。该应用程序已安装到 SD 卡,忽略:-

 android:installLocation="internalOnly"

在我将应用程序移动到手机后,它开始正常工作。要将应用程序移动到手机,请转到:-

设置->应用->您的应用并选择“移动到手机”

因此,如果您的引导接收器不工作。检查:-

  1. list 中的权限和 Intent 过滤器已正确声明。
  2. 应用程序至少有一个 Activity ,并且在安装后或应用程序被强制关闭后至少由用户启动过一次。
  3. 应用程序已安装到内部存储。

关于android - 如果设备使用硬件按钮重新启动,则不会调用 BOOT_COMPLETED,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29723260/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com