博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2 GPS utility methods
阅读量:6693 次
发布时间:2019-06-25

本文共 673 字,大约阅读时间需要 2 分钟。

Methond 1 is to check whether the GPS is on:

12345
public boolean isGPSIsOn() {	LocationManager locationManager = (LocationManager) mContext			.getSystemService(Context.LOCATION_SERVICE);	return locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);}

Method 2 is to open GPS setting page in Android device:

123456789
public void openGPSSettingPage() {	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) { } }

 : https://gist.github.com/Viyu/9406327

转载于:https://www.cnblogs.com/mosthink/p/5288928.html

你可能感兴趣的文章
常见的内存错误及其对策
查看>>
阿里云域名配置与解析
查看>>
Go环境变量
查看>>
高性能Web服务之tomcat基础应用详解(一)
查看>>
Python虚拟环境:Vitualenv
查看>>
反思~~~~~~思绪有点乱
查看>>
android-------非常好的图片加载框架和缓存库(Picasso)
查看>>
Titanium, PhoneGap, Sencha Touch, jQuery Mobile – Clearing up confusion
查看>>
eclipse如何部署Web工程到tomcat中
查看>>
在CentOS7上安装JDK1.8
查看>>
搜索和网页排名的数学原理
查看>>
Xcode项目中同一个名称不同位置 简单修改
查看>>
java设计模式-建造者模式
查看>>
oracle笔记
查看>>
ContentProvider数据更新
查看>>
一些常用RPM Repository(RPM软件仓库)地址
查看>>
Xcode常用插件
查看>>
实体 map 属性
查看>>
php设计模式--适配器模式
查看>>
java中的枚举类 enum使用与分析
查看>>