What are broadcast receivers? How is it implemented?
Answer / Sanjay Kumar Verma
Broadcast Receivers are Android components that respond to system-wide broadcast announcements. They don't have a user interface and they run in response to an event, such as an SMS being received or the battery level changing. Implementation involves creating a new class that extends BroadcastReceiver and overriding the onReceive() method.
| Is This Answer Correct ? | 0 Yes | 0 No |
Which is the method you need to use to post a notification to be shown in the status bar?
Explain apk format for android?
How to handle an audio stream for call in android?
What are android products?
How does recyclerview differ from listview?
What onlistitemclick() function used for?
Which of the method is used to return a view from a layout file given the id of the view?
What is google android sdk?
What is bin file in android?
If the action is action_call, what the data field would be ?
How the nine-patch Image different from a regular bitmap? Alternatively, what is the difference between nine-patch Image vs regular Bitmap Image?
when will you use dynamic broadcast receivers?