I\'m developing an android application and I want to get a notification when the internet (wifi or packet data connection) connection is lost. On my approach I can get the s
You should use BroadcastReceivers for your requirement. Create a BroadcastReceiver which listen for network changes.
Incase of any change in the network it will automatically fire the event and you can perform your operations regarding it.