zoukankan      html  css  js  c++  java
  • Android开发之使用BroadcastReceiver实现开机自己主动启动(源码分享)

          上一节已经介绍过BroadcastReceiver实现实时监听电量的功能,这节就来介绍一下假设实现开机自己主动启动的功能。这个比监听电量还简单不少

    (1)在清单文件注冊权限

        

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

    (2)实现  BroadcastReceiver接口

    package com.example.g04_broadcastreciver04;
    
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    
    public class BootComplete extends BroadcastReceiver {
    
    	@Override
    	public void onReceive(Context context, Intent intent) {
    		// TODO Auto-generated method stub
             Intent intent2=new Intent(context,MainActivity.class);
             intent2.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
             context.startActivity(intent2);
             
    	}
    
    }

    (3)在清单文件注冊Receiver

       <receiver android:name="com.example.g04_broadcastreciver04.BootComplete" >
                <intent-filter>
                    <action android:name="android.intent.action.BOOT_COMPLETED" >
                    </action>
    
                    <category android:name="android.intent.category.HOME" >
                    </category>
                </intent-filter>
            </receiver>


  • 相关阅读:
    轻松记账方法(A)
    个人学习进度(第八周)
    个人学习进度(第八周)
    Web版四则运算
    个人学习进度(第七周)
    个人学习进度(第六周)
    数组的子数组和最大值
    个人学习进度(第五周)
    个人学习进度(第四周)
    个人学习进度(第三周)
  • 原文地址:https://www.cnblogs.com/cynchanpin/p/7095278.html
Copyright © 2011-2022 走看看