启用/禁用使用“用户位置”在android中以编程方式
我想在我的 Android 应用程序中使用用户的位置。但我希望用户允许应用程序使用用户的位置。因此,我希望在用户启动应用程序时有一个对话框,询问用户是否允许使用该位置。
要使用我知道的位置,我必须使用 AndroidManifest.xml
中的
例如
所以现在我想以编程方式控制此权限。能做到吗?如果是,请分享一些指示。
谢谢, 普尼特
I want to use user's location in my android app. But I want the user to allow the app to use the user's location. So I want to have a dialog asking for user's permission to use the location when the user starts the app.
To use the location I know I have to use the <uses-permissions>
in the AndroidManifest.xml
e.g. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION">
So now I want to control this permission programmatically. Can it be done? If Yes please share some pointers.
Thanks,
Punit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你不能那样做。
但是您可以做的是在 SharedPreferences 中创建一个布尔变量,然后在您的服务/活动中检查它。
You can't do that.
But what you can do is create a boolean variable in SharedPreferences and then check that in your service / activity.
不,抱歉。您必须在清单中请求该权限,并且用户必须在安装时授予该权限。
No, sorry. You have to ask for that permission in the manifest, and the user has to grant that permission at install time.
是的,只有手机 root 后才能完成! Google Play 商店中有一些应用程序可以做到这一点。
这是一个开源项目,它的目的是:
https://groups.google.com/forum/?fromgroups# !topic/android-developers/aouN769ewOU
Yes it can be done only if phone is rooted though! There are apps on Google Play Store to do just that.
And here is an open source project that does it to:
https://groups.google.com/forum/?fromgroups#!topic/android-developers/aouN769ewOU