简体   繁体   中英

BroadcastReceiver not receiving

I have read the instructions and examples in SO questions, but still unable to implement a simple BroadcastReceiver, it simply does not receive anything, can someone kindly provide some advice on the following code?

tnx

My activity:

public class Receiver1Activity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        IntentFilter filter = new IntentFilter(MyService.MY_ACTION);
        registerReceiver(new MyReceiver(), filter);
        Intent intent = new Intent();
        startService(intent);
    }
}

My receiver:

public class MyReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context arg0, Intent arg1) {
        Log.i("MyReceiver", "onreceive");       
    }
}

My service, which sends the broadcast:

public class MyService extends Service {

    public static final String MY_ACTION = "com.receiver1.myaction";
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Intent intent2 = new Intent(MY_ACTION);
        sendBroadcast(intent2);
        return START_NOT_STICKY;
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }

}

My manifest file:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.receiver1"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="10" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".Receiver1Activity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <service android:name=".MyService"></service>
</application>

</manifest>

Are you sure that your service is even getting started? It looks like your just creating a blank intent and calling startService().

Your broadcastReceiver appears to be correct.

You need to register your receiver in your AndroidManifest.xml . Until you do that, the Android OS won't be able to find your BroadcastReceiver.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM