`
guobosheng
  • 浏览: 18099 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Android Launcher manifest解析

阅读更多
Launcher 的AndroidManifest.xml文件有很多特殊性,分析一下就会理解整个程序的大概结构。
代码如下:
< manifest xmlns:android = "http://schemas.android.com/apk/res/android"
       package = "net.sunniwell.launcher"
       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-permission android:name = "android.permission.CALL_PHONE" />

使用状态栏权限:

< uses-permission android:name = "android.permission.EXPAND_STATUS_BAR" />

获取当前或最近运行的任务的信息的权限:

< uses-permission android:name = "android.permission.GET_TASKS" />

读取通信录权限 :

< uses-permission android:name = "android.permission.READ_CONTACTS" />

设置壁纸权限:
< uses-permission android:name = "android.permission.SET_WALLPAPER" />

允许程序设置壁纸 hits 的权限:
< uses-permission android:name = "android.permission.SET_WALLPAPER_HINTS" />

使用震动功能权限:
< uses-permission android:name = "android.permission.VIBRATE" />

修改删除 launcher.db 内容权限:
< uses-permission android:name = "android.permission.WRITE_SETTINGS" />

绑定 widget 权限:
< uses-permission android:name = "android.permission.BIND_APPWIDGET" />

读取 launcher.db 内容权限:
< uses-permission android:name = "net.sunniwell.launcher.permission.READ_SETTINGS" />

修改删除 launcher.db 内容权限:
< uses-permission android:name = "net.sunniwell.launcher.permission.WRITE_SETTINGS" />

读写外部存储设备权限:
< uses-permission android: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 >

< action android:name = "android.intent.action.MAIN" />

< category android:name = "android.intent.category.LAUNCHER" />


桌面应用的标记:
< category android:name = "android.intent.category.HOME" />

< category android:name = "android.intent.category.DEFAULT" />

自动化测试工具 Monkey 的标记,待研究 …
< category android:name = "android.intent.category.MONKEY" />


</ intent-filter >

</ activity >

选择壁纸的 activity:
< activity
             android:name = "WallpaperChooser"
             android:label = "@string/pick_wallpaper"
             android:icon = "@drawable/ic_launcher_gallery" >


设置壁纸的 intent-filter :

< intent-filter >

< action android:name = "android.intent.action.SET_WALLPAPER" />

< category android: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 >

< action android: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 >

< action android:name = "com.android.launcher.action.UNINSTALL_SHORTCUT" />

</ intent-filter >

</ receiver >

声明 ContentProvider ,用于对 launcher.db 操作:

<!-- The settings provider contains Home's data, like the workspace favorites -->

< 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-sdk android:minSdkVersion = "4" />
</ manifest > 

说明:
1.
<manifest 标签头部还应声明:
android:sharedUserId="android.uid.shared" ,作用是获得系统权限,但是这样的程序属性只能在build整个系统时放进去(就是系统软件)才起作用,手动安装是没有权限的。
分享到:
评论

相关推荐

    android launcher 源码

    在启动过程中,AMS会解析Launcher的Manifest文件,创建并启动Activity。 2. **布局设计** Launcher的主要布局由多个组件构成,如GridWidget(图标网格)、AllAppsView(所有应用视图)和DockBar(底栏)。这些组件...

    Android Launcher 分析

    #### 一、Launcher启动过程解析 Android Launcher 的启动流程是一个非常重要的概念,对于理解Android系统的启动机制以及如何定制自己的Launcher应用有着关键的作用。 **1.1 Linux Kernel 启动与Android Runtime ...

    Android launcher源码

    Android启动器(Launcher)是Android系统中一个至关重要的组件,它是用户与设备交互的门户,负责展示应用程序快捷方式、小部件以及主屏幕布局。深入理解Android Launcher的源码可以帮助开发者定制自己的启动器,优化...

    Android-Android取得未安装的APK的名字Manifest配置文件里的label名字

    Android提供了一个名为`PackageParser`的内部类,用于解析APK的Manifest文件,但这个类不是公开API,因此在常规开发中不建议直接使用。不过,我们可以通过以下步骤间接实现: 1. **读取APK文件**:使用`...

    自己设计Launcher01:MyLauncher V1.0

    本篇文章将深入探讨如何设计一个基本的Launcher,并以提供的"MyLauncher V1.0"为例进行详细解析。 一、理解Android Launcher 1. **基本架构**:Android Launcher是由多个组件构成的,主要包括Activity(主屏幕)、...

    Android学习笔记之AndroidManifest.xml文件解析

    &lt;category android:name="android.intent.category.LAUNCHER"/&gt; &lt;/manifest&gt; ``` - **解析**: - 根标签 `&lt;manifest&gt;` 指定了应用的包名为 `com.my_domain.app.helloactivity`。 - `&lt;application&gt;` 定义了...

    Android开发教程之Intent详细讲解--千锋培训

    当一个Intent被创建并传递时,Android系统会根据其描述进行解析,查找匹配的组件。解析过程主要考虑以下因素: 1. **动作匹配**:系统遍历Manifest文件中的所有声明,寻找具有与Intent动作相匹配的组件。 2. **...

    定制你自己的桌面---_launcher小觑.doc

    理解Intent的构成、类型和解析过程,是实现launcher与应用之间有效通信的前提。 5. **Manifest配置**: - AndroidManifest.xml文件是应用的元数据,定义了应用的组件、权限和其他配置。必须清楚如何配置intent-...

    Android 4.0 Launch源代码

    《深入解析Android 4.0 Launch源代码》 在Android操作系统的发展历程中,Android 4.0(代号Ice Cream Sandwich,简称ICS)是一个重要的里程碑,它为用户界面带来了重大改进,同时也对开发者提供了更多高级功能。...

    AndroidManifest.xml解析

    &lt;category android:name="android.intent.category.LAUNCHER"/&gt; ``` 这里的`&lt;intent-filter&gt;`用于描述Activity的启动条件,如ACTION_MAIN和CATEGORY_LAUNCHER组合表示这是一个主入口点,可从应用启动器启动。 ...

    解析apk获取icon图标兼容linux和window

    3. **解析manifest中的icon信息**:在解析后的`Document`中,找到`&lt;application&gt;`标签,通常icon信息会在这个标签的`android:icon`属性中。 ```java Element applicationNode = (Element) doc.getElementsByTagName...

    Android PreferenceActivity 学习笔记

    2. 在AndroidManifest.xml中声明Activity:需要在manifest文件中添加对应的Activity声明,并指定它的主题为`android:theme="@android:style/Theme.Holo.Preference"`或其兼容版本,以便获得适当的样式。 ```xml ...

    android启动页面设计

    本文将详细解析如何在Android Studio中设计一个启动页面。 首先,我们需要理解启动页面的基本结构。通常,它由一个简单的Activity组成,这个Activity会显示一段时间,然后自动跳转到主应用界面。在Android Studio中...

    新版Android开发教程.rar

    ----------------------------------- Android 编程基础 1 封面----------------------------------- Android 编程基础 2 开放手机联盟 --Open --Open --Open --Open Handset Handset Handset Handset Alliance ...

    android 学习心得

    - **`android:icon`**:指定显示在Launcher或任务切换器中的图标资源ID。 - **`android:label`**:为Activity提供一个友好的名称,可以是一个字符串资源的引用。 - **`android:launchMode`**:控制Activity的启动...

    Android二维码扫描集成步骤,一步一步实现系列

    在Android应用开发中,二维码扫描是一项常见的功能,它允许用户通过手机摄像头快速读取和解析二维码中的信息。本文将详细讲解如何一步步集成二维码扫描功能,包括必要的依赖添加、布局文件的配置以及AndroidManifest...

    Java解析apk、ipa图标,包名,应用名称,版本号

    4. **获取版本号**:同样在AndroidManifest.xml中,通过解析&lt;manifest&gt;和标签的android:versionCode和android:versionName属性。 对于IPA文件的解析: 1. **读取IPA图标**:IPA解压后,.app文件是一个捆绑包,包含...

    浅入浅出Android安全(中文版).pdf

    Proguard不仅能够混淆代码,使其难以被逆向工程解析,还能压缩和优化Java字节码,删除不必要的类、字段、方法和属性,以及注释。在项目中,我们可以通过在`Android.mk`文件中设置`LOCAL_PROGUARD_FLAG_FILES`来配置...

    Android应用源码之 版本检测与管理.zip

    - 了解Java在Android中的应用,包括网络请求库(如Retrofit、Volley)、JSON解析(如Gson、Jackson)、异步处理(如AsyncTask、Retrofit回调)等。 9. Android最佳实践: - 学习如何优雅地处理版本检测错误,如...

Global site tag (gtag.js) - Google Analytics