Bananakilo
Bananakilo

Reputation: 1413

BroadcastReceiver not firing

my receiver is not firing, code below:

AndroidManifest

<recevier android:name=".NoticeReceiver" android:enabled="true">
    <intent-filter>
    <action android:name="com.clublifestyle.NoticeService.BROADCAST" />
    </intent-filter>            
</recevier>

NoticeReceiver.java

public class NoticeReceiver extends BroadcastReceiver {

  @Override
  public void onReceive(Context context, Intent intent) {
    Toast.makeText(context, "ASDASD", Toast.LENGTH_SHORT).show();
  }
}

CLMainActivity.java

public class CLMainActivity extends TabActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        this.setContentView(R.layout.main);

        this.createTabs();

        Intent i2 = new Intent(this, NoticeReceiver.class);
        this.sendBroadcast(i2);
    }
}

Can you help me to find out why? Thanks!

Upvotes: 0

Views: 1034

Answers (1)

user
user

Reputation: 87064

Try to also set the action for the Intent i2:

Intent i2 = new Intent();
i2.setAction("com.clublifestyle.NoticeService.BROADCAST");
this.sendBroadcast(i2);

EDIT

There is a typo in your manifest. You have the <receiver> tag written as <recevier>. Your app sees no <receiver>

Upvotes: 1

Related Questions