Android location permissions(Android 位置权限)
问题描述
在我的 Android 应用程序中,我愿意使用 GPS 位置.
In my Android application I'm willing to use GPS locations.
- 我应该在 android 中包含哪些主要的权限manifest 文件,以便使用 GPS 位置.
- 如果失去 GPS 信号强度,有没有办法使用移动网络三角测量位置.
- What are the main permissions that I should included in android manifest file in order to use GPS locations.
- In case of lost the GPS signal strength, is there any way to triangulate the position using mobile networks.
谢谢!
推荐答案
你需要的主要权限是android.permission.ACCESS_COARSE_LOCATION
或android.permission.ACCESS_FINE_LOCATION
.
The main permissions you need are android.permission.ACCESS_COARSE_LOCATION
or android.permission.ACCESS_FINE_LOCATION
.
只有精细的位置才能让您访问 gps 数据,并允许您访问粗略位置提供的所有其他内容.您可以使用 LocationManager 的方法从 gps 和已经有信号塔来源,您不必自己计算这些信息.
Only fine location will allow you access to gps data, and allows you access to everything else coarse location gives. You can use the methods of the LocationManager to acquire location data from gps and cell tower sources already, you do not have to work out this information yourself.
如果您的目标是 API 级别 21 (5.0) 或更高,您可能还需要这个:
If you are targeting API Level 21 (5.0) or higher, you may also need this:
<uses-feature android:name="android.hardware.location.gps" />
这篇关于Android 位置权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android 位置权限
- android 4中的android RadioButton问题 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01