alltolove 发表于 2017-10-8 05:39:48

android 5.2.2

使用静态注册的这种方式比较常用,首先还使用原来项目在mainactivity.java旁边新建个类BootCompleteReceiver.java写如下代码package com.example.xinwei.broadcasttest;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.Toast;

/**
* Created by xinwei on 2017/10/7.
*/

public class BootCompleteReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
      Toast.makeText(context, "Phone Booted", Toast.LENGTH_SHORT).show();
    }
}
在androidmanifest.xml文件里注册,在application标签下添加<receiver android:name=".BootCompleteReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
      </receiver>
在manifest标签下添加<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
部署完程序重新开机后就会出现吐司,如下图:
因为安装了这个广播,以后开机会永远出现那个吐司,所以最好把这个程序卸载,还是在长按手机里的应用程序然后出现uninstall对话框,如图
页: [1]
查看完整版本: android 5.2.2