AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="where.com.whereareyou">    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />    <uses-sdk        android:minSdkVersion="7"        android:sharedUserId="android.uid.system" />    <application        android:allowBackup="true"        android:icon="@drawable/ic_launcher"        android:label="@string/app_name"        android:theme="@android:style/Theme.Holo.NoActionBar">        <activity            android:name="where.com.whereareyou.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="where.com.whereareyou.BootBroadcastReceiver">            <intent-filter>                <action android:name="android.intent.action.BOOT_COMPLETED" />                <action android:name="android.media.AUDIO_BECOMING_NOISY" />            </intent-filter>        </receiver>        <service android:name=".MyService"/>    </application></manifest>

MyService
package where.com.whereareyou;import android.app.Service;import android.content.Intent;import android.os.IBinder;import android.util.Log;/** * Created by Administrator on 2015-10-4. */public class MyService extends Service {    public final static String TAG = "MyService";    @Override    public int onStartCommand(Intent intent, int flags, int startId) {        Log.e(TAG,"onStartCommand");        return START_NOT_STICKY;    }    @Override    public void onDestroy() {        super.onDestroy();        Log.e(TAG,"onDestroy");    }    @Override    public IBinder onBind(Intent intent) {        return null;    }}

BootBroadcastReceiver
package where.com.whereareyou;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.util.Log;/** * Created by Administrator on 2015-10-4. */public class BootBroadcastReceiver extends BroadcastReceiver {    static final String TAG = "BootBroadcastReceiver";    @Override    public void onReceive(Context context, Intent intent) {        Log.e(TAG, "BootBroadcastReceiver onReceive");        if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED) ||  android.media.AudioManager.ACTION_AUDIO_BECOMING_NOISY.equals(intent.getAction())) {            Log.e(TAG, "action=" + intent.getAction());            Intent ootStartIntent = new Intent(context, MyService.class);            context.startService(ootStartIntent);        }    }}


如代码所示,Intent.ACTION_BOOT_COMPLETED表示boot启动完毕后,系统会发送一个广播过来,理论上确实可以接收到,大部分手机估计也都是可以的,但是就是有那么些手机rom被改得不可思议,非要加上个android.media.AudioManager.ACTION_AUDIO_BECOMING_NOISY才可以在开机的时候让系统执行Intent.ACTION_BOOT_COMPLETED广播的发送,根据LOG可以看出,以OPPO1107为例,系统是先发送了ACTION_AUDIO_BECOMING_NOISY后发送了ACTION_BOOT_COMPLETED,仅以此博,做个纪念

已有 0 人发表留言,猛击->> 这里<<-参与讨论


ITeye推荐
  • —软件人才免语言低担保 赴美带薪读研!—



更多相关文章

  1. Android RatingBar自定义替换系统图片
  2. android电池系统
  3. input系统一 loop线程的创建与运行
  4. OSCHINA Android 客户端 - 手机相关软件 - 开源中国
  5. Android存储系统之源码篇
  6. android 系统(8)---Android 学习网站汇总
  7. android中系统自带样式
  8. Android系统中自带的图标&一些预定义样式&参考颜色值
  9. Android系统调用

随机推荐

  1. android sqlLite 及Adapter 自定义和Adap
  2. android 用 XML 自定义边框(只上下边框有
  3. Android(安卓)Studio常用快捷键
  4. Android打造不一样的新手引导页面(二)
  5. Android中Service和Thread的区别
  6. Android之MVP模式实现登录和网络数据加载
  7. android使用9patch报错
  8. android默认开启adb调试方法分析
  9. android中的Application的作用
  10. android多渠道打包学习