Here you can find the source of isLocationEnabledNetwork(Context c)
public static boolean isLocationEnabledNetwork(Context c)
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.location.LocationManager; public class Main { public static boolean isLocationEnabledNetwork(Context c) { LocationManager lm = (LocationManager) c .getSystemService(Context.LOCATION_SERVICE); return lm.isProviderEnabled(LocationManager.NETWORK_PROVIDER); }// w ww .ja v a 2 s.com }