Back to project page EBrowser.
The source code is released under:
GNU General Public License
If you think the Android project EBrowser listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.zirco.utils; // ww w . jav a 2s. c o m import org.zirco.ui.activities.MainActivity; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; public class ProxyChangeReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Log.d("ProxyChangeReceiver", "Proxy change receiver called: " + intent.toString()); if (MainActivity.INSTANCE != null) { Log.d("ProxyChangeReceiver", "Refresh system preferences"); MainActivity.INSTANCE.applyPreferences(); } } }