-2

如何为服务使用android权限和usepermission?

我使用了 android uses-permissins ,但我不知道如何在 android 开发中使用 android 权限

4

2 回答 2

1
  • <uses-permission>是当您的应用程序正在寻求用户的许可以使用某些

  • <permission>当您的应用程序需要其他应用程序寻求用户的许可才能使用您的某些功能时。

有用的链接:

于 2013-07-12T09:13:42.720 回答
0
    The "permission" tag declares a security permission that can be used to control access from other packages to specific components or features in your package (or other packages).   

    The "uses-permission" tag requests a "permission" that the containing package must be granted in order for it to operate correctly.
于 2013-07-12T09:17:54.340 回答