还是关于将Service做成服务 开机自启动的

死活不进这里面,intent.getaction还是空的。图片说明

机器人好神奇,每次都这么迅速

估计应该是Androidmanifest.xml中没有配置成功。广播注册啊。







<!-- -->


 <receiver android:name=".receiver.DownloadReceiver">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
                <action android:name="android.intent.action.BOOT_COMPLETED1" />
                <action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
                <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
                <action android:name="android.intent.action.VIEW_DOWNLOADS" />
                <!-- <action android:name="com.audividi.another.loginsuccess" /> -->
            </intent-filter>
        </receiver>