失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > Android 应用访问权限设置

Android 应用访问权限设置

时间:2024-03-09 20:37:23

相关推荐

Android 应用访问权限设置

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

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

设置方法

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

以下是各种参数:

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

android.permission.INTERNET

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

android.permission.ACCESS_CHECKIN_PROPERTIES

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

android.permission.ACCESS_COARSE_LOCATION

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

android.permission.ACCESS_FINE_LOCATION

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

android.permission.ACCESS_LOCATION_EXTRA_COMMANDS

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

android.permission.ACCESS_MOCK_LOCATION

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

android.permission.ACCESS_NETWORK_STATE

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

android.permission.ACCESS_SURFACE_FLINGER

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

android.permission.ACCESS_WIFI_STATE

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

android.permission.ADD_SYSTEM_SERVICE

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

android.permission.BATTERY_STATS

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

android.permission.BLUETOOTH

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

android.permission.BLUETOOTH_ADMIN

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

android.permission.BRICK

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

android.permission.BROADCAST_PACKAGE_REMOVED

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

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.)

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)

android.permission.CALL_PRIVILEGED

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

android.permission.CAMERA

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

android.permission.CHANGE_COMPONENT_ENABLED_STATE

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

android.permission.CHANGE_CONFIGURATION

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

android.permission.CHANGE_NETWORK_STATE

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

android.permission.CHANGE_WIFI_STATE

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

android.permission.CLEAR_APP_CACHE

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

android.permission.CLEAR_APP_USER_DATA

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

android.permission.CONTROL_LOCATION_UPDATES

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

android.permission.DELETE_CACHE_FILES

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

android.permission.DELETE_PACKAGES

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

android.permission.DEVICE_POWER

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

android.permission.DIAGNOSTIC

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

android.permission.DISABLE_KEYGUARD

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

android.permission.DUMP

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

android.permission.EXPAND_STATUS_BAR

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

android.permission.FACTORY_TEST

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

android.permission.FLASHLIGHT

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

android.permission.FORCE_BACK

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

android.permission.GET_PACKAGE_SIZE

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

android.permission.GET_TASKS

39.允许访问硬件

android.permission.HARDWARE_TEST

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

android.permission.INJECT_EVENTS

41.允许一个程序安装packages

android.permission.INSTALL_PACKAGES

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

android.permission.INTERNAL_SYSTEM_WINDOW

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

android.permission.INTERNET

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

android.permission.MANAGE_APP_TOKENS

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

android.permission.MODIFY_AUDIO_SETTINGS

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

android.permission.MODIFY_PHONE_STATE

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

android.permission.MOUNT_UNMOUNT_FILESYSTEMS

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

android.permission.PERSISTENT_ACTIVITY

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

android.permission.PROCESS_OUTGOING_CALLS

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

android.permission.READ_CALENDAR

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

android.permission.READ_CONTACTS

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

android.permission.SET_ORIENTATION

53.允许程序设置壁纸hits

android.permission.SET_WALLPAPER_HINTS

54.允许程序设置壁纸

android.permission.SET_WALLPAPER

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

android.permission.SET_TIME_ZONE

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

android.permission.WRITE_OWNER_DATA

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

android.permission.WRITE_SETTINGS

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

android.permission.WRITE_CALENDAR

59.允许程序写短信

android.permission.WRITE_SMS

如果觉得《Android 应用访问权限设置》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。