0

I have a class with a broadcast receiver class inside of it. How would I go about creating an intent to call upon the broadcast receiver from my on create in the same class?

BenMorel
  • 34,448
  • 50
  • 182
  • 322
theITRanger22
  • 184
  • 6
  • 19

1 Answers1

1

Create intent in usual way and send it with sendBroadcast(Intent) method of Context class

Mykhailo Gaidai
  • 3,130
  • 1
  • 21
  • 23