How to create BroadcastReceiver without Activity/Service?

柔情痞子 提交于 2019-12-31 00:55:09

问题


I'm trying to create BroadcastReceiver without activity/service. While I've no problem registering and executing the code when an activity is present in the code when I remove the activity it fails.

I do register the BroadcastReceiver using the manifest(!) But it is not being called when the activity is removed from the project.

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <receiver android:name="com.ge.test.InstallsListener" >
        <intent-filter>
            <data android:scheme="package" />
            <action android:name="android.intent.action.PACKAGE_ADDED" android:priority="100"/>                
        </intent-filter>
    </receiver>
</application>

Thanks.


回答1:


But it is not being called when the activity is removed from the project.

On Android 3.1 and higher, the user must launch one of your activities before any manifest-registered BroadcastReceiver will work.

See the Android 3.1 release notes, specifically the "Launch controls on stopped applications" section.



来源:https://stackoverflow.com/questions/17065990/how-to-create-broadcastreceiver-without-activity-service

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!