Android开发应用程序时,有时我们要用到很多权限, 今天我就收集了一些开发时可能用到的开启权限设置。

这些权限都是在 AndroidManifest.xml设置。

设置方法

  1. <uses-permission android:name=”权限参数”></uses-permission>

以下是各种参数:

1.访问网络权限(这个常用吧)

  1. android.permission.INTERNET

2.许读写访问 "properties"表在checkin数据库中,改值可以修改上传( Allows read/write access to the "properties" table inthe checkin database, to change values that get uploaded)

  1. android.permission.ACCESS_CHECKIN_PROPERTIES

3.允许一个程序访问CellID或WiFi热点来获取粗略的位置(Allows an application to access coarse (e.g., Cell-ID, WiFi)location)

  1. android.permission.ACCESS_COARSE_LOCATION

4.允许一个程序访问精良位置(如GPS) (Allows an application to access fine(e.g., GPS) location)

  1. android.permission.ACCESS_FINE_LOCATION

5.允许应用程序访问额外的位置提供命令(Allows an application to access extra location provider commands)

  1. android.permission.ACCESS_LOCATION_EXTRA_COMMANDS

6.允许程序创建模拟位置提供用于测试(Allows an application to create mock location providers fortesting)

  1. android.permission.ACCESS_MOCK_LOCATION

7.允许程序访问有关GSM网络信息(Allows applications to accessinformation about networks)

  1. android.permission.ACCESS_NETWORK_STATE

8.允许程序使用SurfaceFlinger底层特性(Allows an application touse SurfaceFlinger's low level features)

  1. android.permission.ACCESS_SURFACE_FLINGER

9.允许程序访问Wi-Fi网络状态信息(Allows applications to accessinformation about Wi-Fi networks)

  1. android.permission.ACCESS_WIFI_STATE

 10.允许程序发布系统级服务(Allows an application to publish system-level services).

  1. android.permission.ADD_SYSTEM_SERVICE

11.允许程序更新手机电池统计信息(Allows an application to update the collected battery statistics)

  1. android.permission.BATTERY_STATS

  12.允许程序连接到已配对的蓝牙设备(Allows applications to connect to paired bluetooth devices)

  1. android.permission.BLUETOOTH

  13.允许程序发现和配对蓝牙设备(Allows applications to discover and pair bluetooth devices)

  1.  android.permission.BLUETOOTH_ADMIN

  14.请求能够禁用设备(非常危险)(Required to be able to disable the device (very dangerous!).)

  1. android.permission.BRICK

  15.许程序广播一个提示消息在一个应用程序包已经移除后(Allows an application to broadcast a notification that anapplication package has been removed)

  1. android.permission.BROADCAST_PACKAGE_REMOVED

16. .允许一个程序广播常用intents(Allows an application to broadcast sticky intents)

  1.  android.permission.BROADCAST_STICKY

  17.允许一个程序初始化一个电话拨号不需通过拨号用户界面需要用户确认(Allows an application to initiate a phone call without goingthrough the Dialer user interface for the user to confirm the call beingplaced.)

  1. android.permission.CALL_PHONE

18.允许一个程序拨打任何号码,包含紧急号码无需通过拨号用户界面需要用户确认(Allows an application to call any phone number, including emergencynumbers, without going through the Dialer user interface for the user toconfirm the call being placed)

  1. android.permission.CALL_PRIVILEGED

19.请求访问使用照相设备(Required to be able to access the camera device. )

  1. android.permission.CAMERA

  20.允许一个程序是否改变一个组件或其他的启用或禁用(Allows an application to change whether an application component(other than its own) is enabled or not. )

  1. android.permission.CHANGE_COMPONENT_ENABLED_STATE

  21.允许一个程序修改当前设置,如本地化(Allows an application to modify the current configuration, such aslocale. )

  1. android.permission.CHANGE_CONFIGURATION

22.允许程序改变网络连接状态(Allows applications to change network connectivity state)

  1.  android.permission.CHANGE_NETWORK_STATE

  23. 允许程序改变Wi-Fi连接状态(Allows applications to changeWi-Fi connectivity state)

  1. android.permission.CHANGE_WIFI_STATE

  24.允许一个程序清楚缓存从所有安装的程序在设备中(Allows an application to clear the caches of all installedapplications on the device. )

  1.  android.permission.CLEAR_APP_CACHE

  25.允许一个程序清除用户设置(Allows an application to clear user data)

  1. android.permission.CLEAR_APP_USER_DATA

  26.允许启用禁止位置更新提示从无线模块(Allows enabling/disabling location update notifications from theradio. )

  1. android.permission.CONTROL_LOCATION_UPDATES

  27.允许程序删除缓存文件(Allows an application to delete cache files)

  1.  android.permission.DELETE_CACHE_FILES

  28.允许一个程序删除包(Allows an application to delete packages)

  1. android.permission.DELETE_PACKAGES

  29.允许访问底层电源管理(Allows low-level access to power management)

  1. android.permission.DEVICE_POWER

  30.允许程序RW诊断资源(Allows applications to RW todiagnostic resources. )

  1. android.permission.DIAGNOSTIC

  31.允许程序禁用键盘锁(Allows applications to disable the keyguard )

  1.  android.permission.DISABLE_KEYGUARD

32.允许程序返回状态抓取信息从系统服务(Allows an application to retrieve state dump information fromsystem services.)

  1. android.permission.DUMP

33. 允许一个程序扩展收缩在状态栏,Android开发网提示应该是一个类似Windows Mobile中的托盘程序(Allows an application to expand or collapse the status bar. )

  1. android.permission.EXPAND_STATUS_BAR

34.作为一个工厂测试程序,运行在root用户(Run as a manufacturer testapplication, running as the root user. )

  1. android.permission.FACTORY_TEST

35.访问闪光灯,HTC Dream不包含闪光灯(Allows access to the flashlight )

  1. android.permission.FLASHLIGHT

36.允许程序强行一个后退操作是否在顶层activities(Allows an application to force a BACK operation onwhatever is the top activity. )

  1.  android.permission.FORCE_BACK

37.允许一个程序获取任何package占用空间容量(Allows an application to findout the space used by any package. )

  1. android.permission.GET_PACKAGE_SIZE

38.允许一个程序获取信息有关当前或最近运行的任务,一个缩略的任务状态,是否活动等等

  1.  android.permission.GET_TASKS

39. 允许访问硬件

  1. android.permission.HARDWARE_TEST

40.允许一个程序截获用户事件如按键、触摸、轨迹球等等到一个时间流,Android开发网提醒算是hook技术吧

  1.  android.permission.INJECT_EVENTS

41.允许一个程序安装packages

  1.  android.permission.INSTALL_PACKAGES

42.允许打开窗口使用系统用户界面

  1. android.permission.INTERNAL_SYSTEM_WINDOW

43.允许程序打开网络套接字

  1. android.permission.INTERNET

 44.允许程序管理(创建、催后、z -order默认向z轴推移)程序引用在窗口管理器中

  1. android.permission.MANAGE_APP_TOKENS

45.允许程序修改全局音频设置

  1. android.permission.MODIFY_AUDIO_SETTINGS

46.允许修改话机状态,如电源,人机接口等

  1.  android.permission.MODIFY_PHONE_STATE

47.允许挂载和反挂载文件系统可移动存储

  1. android.permission.MOUNT_UNMOUNT_FILESYSTEMS

48.允许一个程序设置他的activities显示

  1. android.permission.PERSISTENT_ACTIVITY

49.允许程序监视、修改有关播出电话

  1. android.permission.PROCESS_OUTGOING_CALLS

50.允许程序读取用户日历数据

  1.  android.permission.READ_CALENDAR

  51.允许程序读取用户联系人数据

  1. android.permission.READ_CONTACTS

 52.允许底层访问设置屏幕方向和实际旋转

  1. android.permission.SET_ORIENTATION

53.允许程序设置壁纸hits

  1. android.permission.SET_WALLPAPER_HINTS

54.允许程序设置壁纸

  1. android.permission.SET_WALLPAPER

55.允许程序设置时间区域

  1. android.permission.SET_TIME_ZONE

56.允许一个程序写入但不读取所有者数据

  1. android.permission.WRITE_OWNER_DATA

57. 允许程序读取或写入系统设置

  1. android.permission.WRITE_SETTINGS

58.允许一个程序写入但不读取用户日历数据

  1. android.permission.WRITE_CALENDAR

59.允许程序写短信

  1.  android.permission.WRITE_SMS

欢迎大家补充,谢谢了!

Android 访问权限设置的更多相关文章

  1. 关于Android 访问权限设置

    我前几天在做同城交友网(www.niyuewo.com)与医药网(www.yiyaojing.com)时遇到的问题整理如下: Android开发应用程序时,如果应用程序需要访问网络权限,需要在 And ...

  2. Android 访问权限设置记录-存档留着有用!

    Android开发应用程序时,如果应用程序需要访问网络权限,需要在 AndroidManifest.xml 中加入以下代码: <uses-permission android:name=”and ...

  3. angularjs中的页面访问权限设置

    11月在赶一个项目,这阵子比较忙,挤挤时间更一篇博客吧,如标题所述说说在ng中页面访问权限控制的问题,水平有限各位看官见谅: 在以往的项目中,前后端常见的配合方式是前端提供页面和ui加一点DuangD ...

  4. Nagios 请检查HTTP服务器关于该CGI的访问权限设置

    无权查看任何主机的信息. 请检查HTTP服务器关于该CGI的访问权限设置. 搜索了一下方法 确保 htpasswd.user的所有组为nagios 解决办法: vi /usr/local/nagios ...

  5. Android SharedPreferences 权限设置

    说明: 由于目前打算采用两个app来完成一件事,采用SharedPreferences来做数据交换,于是突然想验证一下Java层的权限设置会不会就是设置Linux下文件的权限,验证的结果是这样的. T ...

  6. SQL Server新增用户并控制访问权限设置。

    新增用户: 一.进入数据库:[安全性]—>[登录名]—>[新建登录名] 二.在常规选项卡中.如图所示,创建登录名.注意设置默认的数据库. 三.在[用户映射]下设置该用户所能访问的数据库.并 ...

  7. tomcat 访问权限设置

    1.全局设置,设置允许某些IP能够访问到tomcat服务器,或不能访问tomcat服务器 只需要编辑tomcat的server.xml,增加适当代码即可. 修改如下:在<Host>  &l ...

  8. Android (cocos2dx 网络访问)访问权限设置

    Android开发应用程序时,如果应用程序需要访问网络权限,需要在 AndroidManifest.xml 中加入以下代码: 同样的如果用到其它的权限,也需要作出声明,部分权限列表如下: androi ...

  9. Android访问权限大全

    android.permission.ACCESS_CHECKIN_PROPERTIES 允许读写访问”properties”表在checkin数据库中,改值可以修改上传( Allows read/w ...

随机推荐

  1. poj Monthly Expense

    http://poj.org/problem?id=3273 #include<cstdio> #include<cstring> #include<cmath> ...

  2. Keil uVISION2 自学教程

    Keil  uVISION2  是众多单片机应用开发软件中优秀的软件之一,它支持众多不同公司的 MCS-51 架构的芯片,它集编辑,编译,仿真等于一体,同时还支持.PLM.汇编和 C 语言的程序设计, ...

  3. COJN 0585 800604鸡蛋的硬度

    800604鸡蛋的硬度 难度级别:B: 运行时间限制:1000ms: 运行空间限制:51200KB: 代码长度限制:2000000B 试题描述 最近XX公司举办了一个奇怪的比赛:鸡蛋硬度之王争霸赛.参 ...

  4. 开放计算平台——数据仓库(Hive)权限控制

    平台数据仓库使用Hive进行构建,通过调研决定使用“SQL Standards Based Authorization in HiveServer2”对用户提交的SQL进行权限控制,也可根据实际情况选 ...

  5. [Java] 垃圾回收 ( Garbage Collection ) 的步骤演示

    关于 JVM 垃圾回收机制的基础内容,可参考上一篇博客 垃圾回收机制 ( Garbage Collection ) 简介 上一篇博客,介绍了堆的内存被分为三个部分:年轻代.老年代.永生代.这篇博文将演 ...

  6. [Design Pattern] Adapter Pattern 简单案例

    Adapter Pattern, 即适配器模式,用于连接两个不兼容的接口,属于结构类的设计模式. 或者叫做,转换器模式. 下面是一个转换器模式简单案例. 假设已有 AudioPlayer 专门播放 m ...

  7. cocos2dx lua binding ,cocos2dx 绑定lua测试

    前面2篇分别简单介绍 手动bind C++ 类和lua:http://blog.csdn.net/chenee543216/article/details/12074771 使用tolua++简化工作 ...

  8. 修改上一篇文章的node.js代码,支持默认页及支持中文

    服务端 app.js var app = require('http').createServer(handler) var io = require('socket.io')(app); var f ...

  9. 终于有人把O2O、C2C、B2B、B2C的区别讲透了

    一.O2O.C2C.B2B.B2C的区别在哪里? o2o 是 online to offline 分为四种运营模式 1.online to offline 是线上交易到线下消费体验 2.offline ...

  10. [C#技术] .NET平台开源JSON库LitJSON的使用方法

    一个简单示例: String str = "{’name’:’cyf’,’id’:10,’items’:[{’itemid’:1001,’itemname’:’hello’},{’itemi ...