为什么receive

编程入门 行业动态 更新时间:2024-10-28 03:30:53
本文介绍了为什么receive_boot_completed没有我的设备上运行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我是开发一些应用程序需要使用 receive_boot_completed 在重新启动重新设定报警

这是正常工作的模拟器和三星标签2 10.1 ..但它不工作对我的星系小型设备与Android版本2.2.1 !!!

这在我的code:

的manifest.xml

< XML版本=1.0编码=UTF-8&GT?; <舱单的xmlns:机器人=htt​​p://schemas.android/apk/res/android     包=com.engahmedphp.collector     机器人:INSTALLLOCATION =自动     安卓版code =1     机器人:VERSIONNAME =1.0>     <用途-SDK         安卓的minSdkVersion =8         机器人:targetSdkVersion =18/>     <使用-权限的Andr​​oid:名称=android.permission.INTERNET对/>     <使用-权限的Andr​​oid:名称=android.permission.ACCESS_NETWORK_STATE/>     <使用-权限的Andr​​oid:名称=android.permission.WRITE_EXTERNAL_STORAG​​E/>     <使用-权限的Andr​​oid:名称=android.permission.RECEIVE_BOOT_COMPLETED/>     <应用         机器人:allowBackup =真         机器人:图标=@可绘制/ app_icon         机器人:标签=@字符串/ APP_NAME         机器人:主题=@风格/ AppTheme>         <活动             机器人:名称=com.engahmedphp.collector.SplashActivity             机器人:标签=@字符串/ APP_NAME             机器人:主题=@安卓风格/ Theme.NoTitleBar.Fullscreen>             <意向滤光器>                 <作用机器人:名称=android.intent.action.MAIN/>                 <类机器人:名称=android.intent.category.LAUNCHER/>             &所述; /意图滤光器>         < /活性GT;         <活动             机器人:名称=。PagesActivity             机器人:标签=@字符串/ APP_NAME>         < /活性GT;         <活动             机器人:名称=。FeedsActivity             机器人:configChanges =方向| keyboardHidden             机器人:标签=@字符串/ APP_NAME>         < /活性GT;         <活动             机器人:名称=页面prefsActivity             机器人:标签=@字符串/ APP_NAME>         < /活性GT;         <活动             机器人:名称=。ManagePagesActivity             机器人:launchMode =singleTask             机器人:标签=@字符串/ APP_NAME>         < /活性GT;         <活动             机器人:名称=。FeedsDialogActivity             机器人:configChanges =方向| keyboardHidden             机器人:主题=@安卓风格/ Theme.Dialog              >         < /活性GT;         <接收机器人:FeedsReceiverNAME =>         < /接收器>         <接收机器人:名称=。BootCompletedReceiver                   机器人:启用=真                   机器人:权限=android.permission.RECEIVE_BOOT_COMPLETED>             <意向滤光器>                 <作用机器人:名称=android.intent.action.BOOT_COMPLETED/>                 <类机器人:名称=android.intent.category.DEFAULT/>             &所述; /意图滤光器>         < /接收器>         <服务机器人:名称=。GetFeedsService>         < /服务>         <服务机器人:名称=。ResetAlarmsService>         < /服务>     < /用途> < /舱单>

BootCompletedReceiver.java

包com.engahmedphp.facebookcollector; 进口android.content.BroadcastReceiver; 进口android.content.Context; 进口android.content.Intent; 进口android.util.Log; 进口android.widget.Toast; 公共类BootCompletedReceiver扩展的BroadcastReceiver {     // ================================================ ==============================     @覆盖     公共无效的onReceive(上下文的背景下,意图意图){             Toast.makeText(背景下,好,Toast.LENGTH_LONG).show();             Log.e(启动,启动);             意图resetAlarms =新的意图(背景下,ResetAlarmsService.class);             context.startService(resetAlarms);     } }

解决方案

尝试把此行接收机的意图过滤器。

<作用机器人:名称=android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE/>

如果您的应用程序安装在SD卡上,您应该注册此得到android.intent.action.BOOT_COMPLETED事件。

更新时间: 由于您的应用程序使用的报警服务,它不应该被安装在外部存储。 参考: developer.android/guide/topics/data /install-location.html

i am developing some app need to use receive_boot_completed on rebooting to reset some alarms

it 's working properly on emulator and Samsung tab 2 10.1 .. but it isn't working on my galaxy mini device with android version 2.2.1 !!!

this in my code :

manifest.xml

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="schemas.android/apk/res/android" package="com.engahmedphp.collector" android:installLocation="auto" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <application android:allowBackup="true" android:icon="@drawable/app_icon" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="com.engahmedphp.collector.SplashActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".PagesActivity" android:label="@string/app_name" > </activity> <activity android:name=".FeedsActivity" android:configChanges="orientation|keyboardHidden" android:label="@string/app_name" > </activity> <activity android:name=".PagePrefsActivity" android:label="@string/app_name" > </activity> <activity android:name=".ManagePagesActivity" android:launchMode="singleTask" android:label="@string/app_name" > </activity> <activity android:name=".FeedsDialogActivity" android:configChanges="orientation|keyboardHidden" android:theme="@android:style/Theme.Dialog" > </activity> <receiver android:name=".FeedsReceiver" > </receiver> <receiver android:name=".BootCompletedReceiver" android:enabled="true" android:permission="android.permission.RECEIVE_BOOT_COMPLETED" > <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> <category android:name="android.intent.category.DEFAULT"/> </intent-filter> </receiver> <service android:name=".GetFeedsService" > </service> <service android:name=".ResetAlarmsService" > </service> </application> </manifest>

BootCompletedReceiver.java

package com.engahmedphp.facebookcollector; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; import android.widget.Toast; public class BootCompletedReceiver extends BroadcastReceiver { // ============================================================================== @Override public void onReceive(Context context, Intent intent) { Toast.makeText(context, "nice", Toast.LENGTH_LONG).show(); Log.e("boot", "boot"); Intent resetAlarms = new Intent(context, ResetAlarmsService.class); context.startService(resetAlarms); } }

解决方案

try to put this line in your receiver's intent-filter.

<action android:name="android.intent.action.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE" />

If your application is installed on the SD card, you should register this to get the android.intent.action.BOOT_COMPLETED event.

Updated: Since your app is using alarm service, it should not be installed on external storage. Reference: developer.android/guide/topics/data/install-location.html

更多推荐

为什么receive

本文发布于:2023-11-25 16:40:20,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1630528.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:receive

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!