如何在不以编程方式打开android设置的情况下自动启动



由于我想每两分钟更新一次服务器的位置,所以我在 android 中添加了服务类,当移动设备重新启动时,我正在使用boot_completed调用广播接收器。但是,即使我的设备重新启动或我打开了应用程序,该接收器也不会呼叫。

因为自动启动被禁用,这就是为什么它不来的原因。如何在 android 中以编程方式启用,例如启用 GPS 弹出窗口

。代码:如果我这样给出,它会打开自动开始页的权限,而不是手动显示如何启用它。请帮助我。每次应用程序打开时,此代码都意味着即使已启用,也会来。

if(Build.BRAND.equalsIgnoreCase("xiaomi") ){
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.miui.securitycenter", "com.miui.permcenter.autostart.AutoStartManagementActivity"));
startActivity(intent);

}else if(Build.BRAND.equalsIgnoreCase("Letv")){
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.letv.android.letvsafe", "com.letv.android.letvsafe.AutobootManageActivity"));
startActivity(intent);
}
else if(Build.BRAND.equalsIgnoreCase("Honor")){
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity"));
startActivity(intent);
}
public class BootCompletedIntentReceiver extends BroadcastReceiver {
PendingIntent pintent;
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "boot"+intent.getAction(), Toast.LENGTH_SHORT).show();
Log.i("QQ","boot"+intent.getAction());
if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
Intent pushIntent = new Intent(context, ForegroundLocationService.class);
context.startService(pushIntent);
/*
Calendar cal = Calendar.getInstance();
intent = new Intent(context, ForegroundLocationService.class);
pintent = PendingIntent
.getService(context, 0, intent, 0);
Log.i("QQ","else--less than oreo"+pintent);
AlarmManager alarm = (AlarmManager)context. getSystemService(Context.ALARM_SERVICE);
// Start service every 20 seconds
alarm.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(),
5* 1000, pintent);*/
}
}
}

清单:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<receiver android:enabled="true"
android:directBootAware="true"
android:exported="true" android:name=".background_services.BootCompletedIntentReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.QUICKBOOT_POWERON"/>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>
<meta-data android:name="enable" android:value="true"/>
<meta-data android:name="bootType" android:value="restart"/>
<meta-data android:name="sendToBack" android:value="true"/>
</receiver>

据我所知,不可能达到与 GPS 弹出窗口相同的行为。 也无法知道用户是否为您的APP打开了自动启动功能。 所以我认为你唯一能做的就是要求用户像你已经在做的那样为你的应用程序打开自动启动。例如,在应用程序首次打开时询问这个问题,然后在共享首选项中存储一个值,以防止每次应用程序下次启动时弹出。

相关内容

  • 没有找到相关文章

最新更新