android 检查位置服务是否开启,android – 如何检查位置服务是否启用?
您可以使用以下代码检查gps提供程序和网络提供程序是否已启用。LocationManager lm = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE);boolean gps_enabled = false;boolean network_enabled = false;try {gps_enabled = l...