Dynamically register a broadcast receiver to monitor network changes

Source: Internet
Author: User

1: netchangereceiver. Java

Public class netchangereceiver extends broadcastreceiver {@ override public void onreceive (context, intent) {connectivitymanager CM = (connectivitymanager) context. getsystemservice (context. connectivity_service); networkinfo netinfo = cm. getactivenetworkinfo (); If (netinfo! = NULL & netinfo. isavailable () {toast. maketext (context, "network connected", toast. length_short ). show ();} else {toast. maketext (context, "network not connected", toast. length_short ). show ();}}}

2: mainactivity. Java

Public class mainactivity extends activity {intentfilter; netchangereceiver; @ override protected void oncreate (bundle savedinstancestate) {super. oncreate (savedinstancestate); setcontentview (R. layout. activity_main); intentfilter = new intentfilter (); // after the current network changes, the system will issue a value of android.net. conn. connectivity_change broadcast, so listen to it intentfilter. addaction ("android.net. conn. connectivity_change "); netchangereceiver = new netchangereceiver (); // register registerreceiver (netchangereceiver, intentfilter);} @ override protected void ondestroy () {super. ondestroy (); // The dynamically registered broadcast receiver must cancel registration of unregisterreceiver (netchangereceiver );}}

3: Do not forget to declare permissions at last:

 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

 

Dynamically register a broadcast receiver to monitor network changes

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.