android常用权限

来源:互联网 发布:淘宝运费险最多赔多少 编辑:程序博客网 时间:2024/06/09 20:10
android.permission.ACCESS_NETWORK_STATE允许程序访问有关GSM网络信息(Allowsapplications to access information about networks) android.permission.ACCESS_WIFI_STATE允许程序访问Wi-Fi网络状态信息(Allowsapplications to access information about Wi-Fi networks) android.permission.BLUETOOTH允许程序连接到已配对的蓝牙设备(Allowsapplications to connect to paired bluetooth devices) android.permission.BLUETOOTH_ADMIN允许程序发现和配对蓝牙设备(Allowsapplicationsto discover and pair bluetooth devices) android.permission.CHANGE_WIFI_STATE允许程序改变Wi-Fi连接状态(Allowsapplications to change Wi-Fi connectivity state) android.permission.DEVICE_POWER允许访问底层电源管理(Allowslow-level access to power management) android.permission.DISABLE_KEYGUARD允许程序禁用键盘锁(Allowsapplications to disable the keyguard ) android.permission.EXPAND_STATUS_BAR允许一个程序扩展收缩在状态栏,Android开发网提示应该是一个类似WindowsMobile中的托盘程序(Allows an application to expand or collapse the status bar.) android.permission.GET_DETAILED_TASKS  检索正在运行的应用的详细信息,恶意程序可借此获得其他应用的私密信息 android.permission.GET_TASKS   检索正在运行的应用,可用于了解当前设备上使用了哪些应用 android.permission.INJECT_EVENTS   将自身的输入事件(例如按键)提供给其他应用,恶意程序可坚持控制手机 android.permission.INTERNAL_SYSTEM_WINDOW  允许创建未授权的内部系统窗口,普通应用绝不应该使用此权限 android.permission.MANAGE_APP_TOKENS  创建和管理令牌,普通应用绝不应该使用此权限 android.permission.MASTER_CLEAR   恢复出厂设置 android.permission.MANAGE_NETWORK_POLICY android.permission.MANAGE_USB android.permission.MOUNT_UNMOUNT_FILESYSTEMS允许挂载和反挂载文件系统可移动存储(Allowsmounting and unmounting file systems for removable storage. ) android.permission.RECEIVE_BOOT_COMPLETED允许一个程序接收到 ACTION_BOOT_COMPLETED广播在系统完成启动(Allowsan application to receive the ACTION_BOOT_COMPLETED that is broadcast after thesystem finishes booting. ) android.permission.REORDER_TASKS允许程序改变Z轴排列任务(Allowsan application to change the Z-order of tasks) android.permission.READ_PHONE_STATE  读取手机的状态和身份,可以确定手机的号码/序列号/是否处于通话状态/被叫号码 android.permission.READ_FRAME_BUFFER  读取帧缓冲区的内容 android.permission.REMOVE_TASKS   停止正在运行的进程,恶意程序可以借此停止其他程序的运行 android.permission.READ_EXTERNAL_STORAGE android.permission.REMOTE_AUDIO_PLAYBACK android.permission.START_ANY_ACTIVITY  允许应用启动任何活动(不考虑权限保护和导出状态) android.permission.SYSTEM_ALERT_WINDOW  在其他应用之上或用户界面的特定部分绘图,可能会干扰对用户界面的使用,或者使其他应用中看到的内容发生变化 android.permission.SET_ORIENTATION允许底层访问设置屏幕方向和实际旋转(Allowslow-level access to setting the orientation (actually rotation) of the screen.) android.permission.STATUS_BAR允许程序打开、关闭或禁用状态栏及图标Allows an application to open, close, or disable the statusbar and its icons. android.permission.SET_SCREEN_COMPATIBILITY  允许控制其他应用的屏幕兼容模式,恶意程序可以借此影响其他应用的行为 android.permission.START_ANY_ACTIVITY  允许应用启动任何活动(不考虑权限保护和导出状态)android.permission.STOP_APP_SWITCHES让应用程序始终运行 android.permission.STATUS_BAR_SEBVICE android.permission.SHELL android.permission.UPDATE_DEVICE_STATS  允许应用修改电池的统计信息,普通应用绝不应该使用此权限 android.permission. VIBRATE控制振动器 android.permission.WRITE_EXTERNAL_STORAGE  允许写入或删除SD卡 android.permission.WRITE_SETTINGS   修改系统设置,恶意程序可以借此破坏系统 android.permission.WAKE_LOCK   阻止手机进入休眠状态
0 0
原创粉丝点击