美文网首页
android 开机自启动的几种方法

android 开机自启动的几种方法

作者: wasdzy111 | 来源:发表于2019-12-23 10:14 被阅读0次

    第一种: 监控RECEIVE_BOOT_COMPLETED,即开机启动事件

    第二种: 监控sd卡mount事件, 监控sd卡事件也有类似开机启动效果。特别app安装在sd卡的情况下有些os是抓取不到RECEIVE_BOOT_COMPLETED

    第三种: android:installLocation="internalOnly", 限制app的安装位置,使其能抓取到RECEIVE_BOOT_COMPLETED

    第四种: 监听电话或者短信事件。

    //添加权限
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    
    <receiver android:name="com.xxx.receiver.SystemEventReceiver" 
                      android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
                <intent-filter>
                    <action android:name="android.intent.action.BOOT_COMPLETED" /> 
                </intent-filter>
               <intent-filter>
                    <action android:name="RestartSerivcesForSystemEventReceiver" />   
                </intent-filter>
               <intent-filter>
                <action android:name="android.intent.action.MEDIA_MOUNTED" />
                <action android:name="android.intent.action.MEDIA_UNMOUNTED" />
                <action android:name="android.intent.action.MEDIA_EJECT" />
                <data android:scheme="file" > </data>  
                </intent-filter>
    </receiver>
    

    相关文章

      网友评论

          本文标题:android 开机自启动的几种方法

          本文链接:https://www.haomeiwen.com/subject/teqznctx.html