Broadcast Receivers A broadcast receiver is an Android component which allows to register and listen for device orientation changes like sms messsage recieved , phone call recieved/pick/cut ,battery status changed, the Wi-Fi came on. Android operating system and even other applications time to time broadcast messages about things that are happening like sms messsage recieved , phone call recieved/pick/cut ,battery status changed, the Wi-Fi came on. With the help of broadcast receiver you will catch Android operating system specific events and then you can code your application for that event. Where we use : Example: We want when any call will come then we will save call details in our sqlite database. How to do : ...
Become a coding expert