- 浏览: 204178 次
- 性别:
- 来自: 南京
文章分类
最新评论
-
xyyx_nk:
在demo中没有下载的示例,能详细说一下怎么监听下载过程吗?比 ...
DhNet 网络http工具(带缓存功能哦) -dhroid文档 -
zhaoguowei998:
dhroid ioc模块对 加密混淆问题 -
zhaoguowei998:
你太牛了,佩服佩服,以后要多想你请教了
dhroid ioc模块对 加密混淆问题 -
白色蜻蜓:
转载下您的文章,已注明出处。
IOS开发之百度地图API应用 -
wenjiefeng:
你好,在andrioidpn-client客户端源码里,Not ...
Android 推送之原理与初触Androidpn(Android Push Notification)
介绍一下android的各种权限。
代码如下:
- < manifestxmlns:android manifestxmlns:android = "http://schemas.android.com/apk/res/android"
- package = "net.sunniwell.launcher"
- android android:versionCode ="1"android :versionName = "1.0.1" >
关于自定义权限,这是很好的例子,其他apk程序要想使用Launcher的功能必须添加这些权限,而这些权限都是在这里声明的。
这个是安装快捷方式的权限定义:
- < permission
- android:name = "com.android.launcher.permission.INSTALL_SHORTCUT"
- android:permissionGroup = "android.permission-group.SYSTEM_TOOLS"
- android:protectionLevel = "normal"
- android:label = "@string/permlab_install_shortcut"
- android:description = "@string/permdesc_install_shortcut" />
这个是卸载快捷方式的权限定义:
- < permission
- android:name = "com.android.launcher.permission.UNINSTALL_SHORTCUT"
- android:permissionGroup = "android.permission-group.SYSTEM_TOOLS"
- android:protectionLevel = "normal"
- android:label = "@string/permlab_uninstall_shortcut"
- android:description = "@string/permdesc_uninstall_shortcut" />
这个是读取launcher.db内容的权限定义:
- < permission
- android:name = "net.sunniwell.launcher.permission.READ_SETTINGS"
- android:permissionGroup = "android.permission-group.SYSTEM_TOOLS"
- android:protectionLevel = "normal"
- android:label = "@string/permlab_read_settings"
- android:description = "@string/permdesc_read_settings" />
这个是修改和删除launcher.db内容的权限定义:
- < permission
- android:name = "net.sunniwell.launcher.permission.WRITE_SETTINGS"
- android:permissionGroup = "android.permission-group.SYSTEM_TOOLS"
- android:protectionLevel = "normal"
- android:label = "@string/permlab_write_settings"
- android:description = "@string/permdesc_write_settings" />
这些是Launcher的权限声明,通过这些就能看出launcher的大概功能了:
打电话权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.CALL_PHONE" />
使用状态栏权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.EXPAND_STATUS_BAR" />
获取当前或最近运行的任务的信息的权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.GET_TASKS" />
读取通信录权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.READ_CONTACTS" />
设置壁纸权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.SET_WALLPAPER" />
允许程序设置壁纸hits的权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.SET_WALLPAPER_HINTS" />
使用震动功能权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.VIBRATE" />
修改删除launcher.db内容权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.WRITE_SETTINGS" />
绑定widget权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.BIND_APPWIDGET" />
读取launcher.db内容权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "net.sunniwell.launcher.permission.READ_SETTINGS" />
修改删除launcher.db内容权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "net.sunniwell.launcher.permission.WRITE_SETTINGS" />
读写外部存储设备权限:
- < uses-permissionandroid:name uses-permissionandroid:name = "android.permission.WRITE_EXTERNAL_STORAGE" > </ uses-permission >
- < application
- android:name = "LauncherApplication"
- activity应该运行的进程的名字:
- android:process = "android.process.acore"
- android:label = "@string/application_name"
- android:icon = "@drawable/swicon" >
- < activity
- android:name = "Launcher"
- 是否
- android:launchMode = "singleTask"
- android:clearTaskOnLaunch = "true"
- 这个activity是否在被杀死或者重启后能恢复原来的状态:
- android:stateNotNeeded = "true"
- android:theme = "@style/Theme"
- android:screenOrientation = "landscape"
- android:windowSoftInputMode = "stateUnspecified|adjustPan" >
- < intent-filter >
- < actionandroid:name actionandroid:name = "android.intent.action.MAIN" />
- < categoryandroid:name categoryandroid:name = "android.intent.category.LAUNCHER" />
桌面应用的标记:
- < categoryandroid:name categoryandroid:name = "android.intent.category.HOME" />
- < categoryandroid:name categoryandroid:name = "android.intent.category.DEFAULT" />
自动化测试工具Monkey的标记,待研究…
- < pre class = "html" name = "code" > < categoryandroid:name categoryandroid:name = "android.intent.category.MONKEY" />
- </ intent-filter >
- </ activity > </ pre >
选择壁纸的activity:
<activity
android:name="WallpaperChooser"
android:label="@string/pick_wallpaper"
android:icon="@drawable/ic_launcher_gallery" >
设置壁纸的intent-filter:
- < intent-filter >
- < actionandroid:name actionandroid:name = "android.intent.action.SET_WALLPAPER" />
- < categoryandroid:name categoryandroid:name = "android.intent.category.DEFAULT" />
- </ intent-filter >
搜索的activity:
- </ activity >
- <!-- Enable system-default search mode for any activity in Home -->
- < meta-data
- android:name = "android.app.default_searchable"
- android:value = "*" />
安装快捷方式的广播接收器:
- <!-- Intent received used to install shortcuts from other applications-->
- < receiver
- android:name = ".InstallShortcutReceiver"
- android:permission = "com.android.launcher.permission.INSTALL_SHORTCUT" >
- < intent-filter >
- < actionandroid:name actionandroid:name = "com.android.launcher.action.INSTALL_SHORTCUT" />
- </ intent-filter >
- </ receiver >
- <!-- Intent received used to uninstall shortcuts from other applications-->
卸载快捷方式的广播接收器:
- < receiver
- android:name = ".UninstallShortcutReceiver"
- android:permission = "com.android.launcher.permission.UNINSTALL_SHORTCUT" >
- < intent-filter >
- < actionandroid:name actionandroid:name = "com.android.launcher.action.UNINSTALL_SHORTCUT" />
- </ intent-filter >
- </ receiver >
声明ContentProvider,用于对launcher.db操作:
- <!-- The settings provider contains Home's data, like the workspacefavorites -->
- < provider
- android:name = "SWLauncherProvider"
- android:authorities = "net.sunniwell.launcher.settings"
- android:writePermission = "net.sunniwell.launcher.permission.WRITE_SETTINGS"
- android:readPermission = "net.sunniwell.launcher.permission.READ_SETTINGS" />
- </ application >
- < uses-sdkandroid:minSdkVersion uses-sdkandroid:minSdkVersion = "4" />
- </ manifest >
说明:
1.
<manifest标签头部还应声明:
android:sharedUserId="android.uid.shared",作用是获得系统权限,但是这样的程序属性只能在build整个系统时放进去(就是系统软件)才起作用,手动安装是没有权限的。
发表评论
-
android中当EditText获得焦点时屏幕下面的控件移位
2013-01-27 21:15 1062这几天在写一个Anroid App时,在最下面写了一个工具栏, ... -
android 4.0 以上平台选择图片报错Attempted to access a cursor after it has been closed.
2013-01-20 15:32 1166android 4.0 以上平台选择图片报错Attempte ... -
android textview 添加下划线 中划线 删除线
2012-12-26 22:22 1180tv=(TextView)findViewById(R.id. ... -
android Uri获取真实路径转换成File的方法
2012-08-23 12:40 3064data.getData()返回的 ... -
Android自定义捕获Application全局异常
2012-08-21 17:24 1188package qianlong.qlmobile ... -
imageView 的 android:maxHeight,maxWidth属性
2012-07-01 10:29 4424在使用imageview控件时,由于图片大小不一致,需要给图片 ... -
android 定时问题
2012-06-26 22:12 704原来转了一个关于android定时问题的文章 这里 说 ... -
安卓图表引擎AChartEngine(一) - 简介
2012-06-24 15:03 608http://blog.csdn.net/lk_blog/ar ... -
AndroidManifest.xml中android:configChanges的简介
2012-06-14 22:29 821程序在运行时,一些设备的配置可能会改变,如:横竖屏的切换、键盘 ... -
PreferenceActivity
2012-06-14 22:15 696PreferenceActivity 好 ... -
android 启动第三方程序的代码
2012-06-14 21:56 916方法一 Intent intent = new Int ... -
Android开发中的小技术
2012-06-14 17:12 8381.WebView加载各种类型的网页 ? ... -
Android 推送之原理与初触Androidpn(Android Push Notification)
2012-06-11 22:06 3702由于最近项目中涉及到 ... -
调用android系统自带的功能
2012-06-10 16:05 836//显示网页: Uri uri = Uri.parse(& ... -
android 录音
2012-06-10 15:59 874必须在AndroidManifest中设置相应的权限:a ... -
Android Interface Definition Language(AIDL)
2012-06-10 15:47 777<!-- [if gte mso 9]><x ... -
measure
2012-06-08 11:33 965在还没有构建View 之前无法取得View的度宽。 在此 ... -
获取屏幕尺寸,users-permission的总结,空间置顶,设置全屏和无标题,在ondraw中获取text文本的长和宽,抗锯齿
2012-05-30 13:35 1085一些常用的小功能,不算是技术,一个小总结。 1.获取屏幕尺寸 ... -
HorizontalScrollView 嵌套 listView 的问题
2012-05-29 19:41 2389这是一个假命题 HorizontalScroll ... -
Android 调用系统电话,短信
2012-05-27 15:57 1110//电话 intent = new Intent(&quo ...
相关推荐
添加权限 首先要在manifest中加上访问网络的权限: 代码如下: <manifest> <uses android:name=”android.permission.INTERNET”> … </manifest> 完整的Manifest文件如下: 代码如下: <?xml version=”1.0″ ...
同时,开发者还可以借助第三方库,如`android-permissions`等,它们封装了各种设备的权限管理接口,简化适配工作。 总的来说,理解并适配Android各主要手机机型的权限设置界面,不仅能够提升用户体验,也有助于应用...
在Android开发环境中,Android Studio是谷歌官方推荐的集成开发环境(IDE),它为开发者提供了丰富的功能和工具。其中,代码高亮(Code Highlighting)是提高编程效率和代码可读性的重要特性。代码高亮插件能够让...
### 和Android源代码一起工作 #### 一、演讲概述及讲师背景 本次演讲主题为“和Android源代码一起工作”,由海豚浏览器的研发主管胡继堂主讲。胡继堂曾任职于微软亚洲工程院,拥有丰富的软件开发经验,自2010年起...
例如,添加如`<uses-permission android:name="com.example.MY_PERMISSION" />`到AndroidManifest.xml,并在应用内部处理串口访问。 4. **第三方库**:为了简化串口通信,可以使用第三方库,如`Android-SerialPort-...
在Android开发领域,经典代码例子是开发者学习和提升技能的重要资源。这些例子涵盖了各种关键功能和组件的实现,有助于深入理解Android应用的工作原理。在这个压缩包中,我们可能找到了多个有关Android编程的示例...
在Android系统中,修改系统文件访问权限涉及到对操作系统底层的深度理解,这通常需要root权限。以下是关于这个主题的详细知识点: 1. **init.rc**:这是Android系统启动时执行的第一个脚本,位于系统的system/core/...
《Android第二行代码》是郭霖撰写的一本深入浅出的Android编程入门书籍,它旨在帮助初学者快速理解和掌握Android应用开发。这本书的全书源代码提供了丰富的实践示例,帮助读者通过动手实践来巩固理论知识。以下是...
6. **安全机制**:Android 4.2.2强化了权限管理,源代码中可以学习到如何设置权限,以及权限验证的实现方式。 7. **系统更新与升级**:4.2.2支持无线更新(OTA),源代码揭示了系统更新的打包、验证和安装过程。 8...
在内容上,《Android系统源代码情景分析(含CD光盘1张)》结合使用情景,全面、深入、细致地分析了Android系统的源代码,涉及到Linux内核层、硬件抽象层(HAL)、运行时库层(Runtime)、应用程序框架层...
在Android系统中,实现定时开关机或重启的功能通常涉及到对系统底层权限的访问以及使用到广播接收器(BroadcastReceiver)和服务(Service)等组件。以下将详细解释如何在Android环境中构建这样的功能。 首先,理解...
《Android系统源代码情景分析》随书光盘内容(源代码) 目录如下: 第1篇 初识Android系统 第1章 准备知识 1.1 Linux内核参考书籍 1.2 Android应用程序参考书籍 1.3 下载、编译和运行Android源代码 ...
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" /> </intent-filter> </receiver> ``` 最后,安装APK时需要动态请求安装未知来源应用的权限(Android 8.0及以上版本),然后使用`Intent`启动...
【标题】"简单的记事本android应用源代码"揭示了这是一个基于Android平台的简易记事本应用程序的开发源代码。这个应用可能具有基础的文本编辑、保存和查看功能,是初学者了解Android应用开发的好例子。 【描述】...
std::cerr << "无法打开摄像头" << std::endl; return -1; } cv::namedWindow("Camera Feed", cv::WINDOW_NORMAL); while (true) { cv::Mat frame; cap >> frame; // 从摄像头捕获一帧 if (frame.empty())...
ndroid系统源代码情景分析的评论 这本书是我看过的最深入的一本android书了,可以看出作者是一个很有悟性的程序员,很适合需要提高的android框架层工程师进阶。binder部分是目前所有书中分析的最全面的。匿名共享...
D:\Program Files (x86)\adt-bundle-windows-x86_64-20130729\sdk\platforms\android-19 步骤三:在这个目录下新建一个 sources的文件夹, 然后把源码放入进去(我上传的是压缩包,你进入到sources的文件夹后解压...
7. **权限管理系统**:Android的安全模型基于权限,源代码分析有助于理解权限的授予、检查机制,对于开发安全应用至关重要。 8. **编译与构建系统**:Android使用Build System(如Makefile、Gradle)进行编译和打包...
【Android美食天下源代码】项目是一个综合性的移动应用开发实例,专为Android平台设计,旨在提供一个关于美食的全方位互动平台。这个项目不仅包含了客户端应用程序的源代码,还涉及到服务器端的搭建,使得用户可以...
源代码会处理权限请求,确保在Android 6.0及以上版本的设备上运行正常。 8. **多语言支持**:为了实现国际化,源代码可能会使用strings.xml资源文件,以及res/values/下不同语言的目录,来支持多种语言的显示。 9....