InterviewSolution
Saved Bookmarks
| 1. |
Is it possible to remove and add intent filters from activity based on user preference? |
|
Answer» For checking the status of BatteryLow and sending information to the user, we can create a BroadCast Receiver who will send a triggers battery LOW notification that you see on your mobile screen. A Broadcast Receiver is an Android component which ALLOWS you to register for system or application events. Once Event occur it will Broadcast message to the user. There are two steps to create a Broadcast Receiver:
|
|