启用/禁用使用“用户位置”在android中以编程方式

发布于 2024-12-19 02:44:23 字数 379 浏览 2 评论 0原文

我想在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小帐篷 2024-12-26 02:44:23

你不能那样做。

但是您可以做的是在 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.

岁月蹉跎了容颜 2024-12-26 02:44:23

所以现在我想以编程方式控制此权限。可以吗?

不,抱歉。您必须在清单中请求该权限,并且用户必须在安装时授予该权限。

So now I want to control this permission programmatically. Can it be done?

No, sorry. You have to ask for that permission in the manifest, and the user has to grant that permission at install time.

新一帅帅 2024-12-26 02:44:23

是的,只有手机 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文