Skip to content

Instantly share code, notes, and snippets.

@wangerekaharun
Created January 10, 2018 09:54
Show Gist options
  • Save wangerekaharun/9e263c324cc84a440f98f14e1509a0bf to your computer and use it in GitHub Desktop.
Save wangerekaharun/9e263c324cc84a440f98f14e1509a0bf to your computer and use it in GitHub Desktop.
Starting the intentservice in the OnReceive method of the ToastBroadcastReceiver
public class ToastBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent serviceIntent= new Intent(context,BackgroundService.class);
context.startService(serviceIntent);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment