判断GPS是否开启&转到设置GPS界面
Posted 庚拓天下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断GPS是否开启&转到设置GPS界面相关的知识,希望对你有一定的参考价值。
/** * 判断GPS是否开启,GPS或者AGPS开启一个就认为是开启的 * @param context * @return true 表示开启 */ public static final boolean isGPSOPen(final Context context) { LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE); // 通过GPS卫星定位,定位级别可以精确到街(通过24颗卫星定位,在室外和空旷的地方定位准确、速度快) boolean gps = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER); // 通过WLAN或移动网络(3G/2G)确定的位置(也称作AGPS,辅助GPS定位。主要用于在室内或遮盖物(建筑群或茂密的深林等)密集的地方定位) boolean network = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER); if (gps || network) { return true; } return false; } /** * 转到设置GPS界面 * @param context */ public static final void gotoSetGPS(Context context) { Intent intent = new Intent(); intent.setAction(Settings.ACTION_LOCATION_SOURCE_SETTINGS); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); try{ context.startActivity(intent); } catch(ActivityNotFoundException ex) { // The android SDK doc says that the location settings activity // may not be found. In that case show the general settings. // General settings activity intent.setAction(Settings.ACTION_SETTINGS); context.startActivity(intent); } }
以上是关于判断GPS是否开启&转到设置GPS界面的主要内容,如果未能解决你的问题,请参考以下文章
Android GPS检测是否打开,没有打开,自动引导到设置页面