- 浏览: 923020 次
- 性别:
- 来自: 上海
最新评论
-
liu149339750:
我勒个去,搜到你的博客了,关注!
Android make脚本简记 -
ihopethatwell:
楼主,这个修改时间有个问题,退出修改界面就不保存设置的时间了, ...
Android中如何修改系统时间(应用程序获得系统权限) -
flyar520:
你好...我也遇到屏幕半屏刷成黑屏的问题...但是我的时在开机 ...
Android横屏状态下返回到壁纸界面屏幕刷新问题 -
flyar520:
你好...我也遇到屏幕半屏刷成黑屏的问题...但是我的时在开机 ...
Android横屏状态下返回到壁纸界面屏幕刷新问题 -
taowayi:
推荐android一键反编译神器 apkdec
Android apk反编译
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整个系统时放进去(就是系统软件)才起作用,手动安装是没有权限的。
发表评论
-
运营商MCC+MNC
2012-02-15 10:24 839020201, "Cosmote", ... -
Android 手机玩转技巧
2011-05-10 19:32 2847快速查看手机充电情况 ... -
模拟器上安装Android Market
2011-03-15 19:42 3081模拟器上安装Android Market 一. 基 ... -
Android onSaveInstanceState和onRestoreInstanceState的用处
2011-02-12 20:11 1628很多不明白Activity类中包含的onSaveInstanc ... -
Android 用于GPRS的AT命令
2011-02-11 18:59 5897这个文档是基于GSM标准07.07的,微控可以 ... -
Android Google应用移植时包依赖关系
2011-01-26 16:44 2237Canledar : system/app Google ... -
Android EditView属性解析
2011-01-13 20:27 12306本文主要研究一下EditText的属性(还没研究完,边 ... -
Android preference与ActivityGroup UI更新
2011-01-10 21:22 3254之前发过一篇有关于自定义preference 在Activit ... -
Android2.3新特性
2011-01-07 10:18 1767在北京时间12月7日凌晨 ... -
Android 节约用电技巧
2010-12-31 17:19 15421.降低屏幕亮度。通过 设置->声音和显示设置-> ... -
Android PreferenceActivity浅析
2010-12-30 18:47 1676看到很多书中都没 ... -
Android getprop解析
2010-12-29 19:39 6679在超级终端中输入getprop,就会输出机器 全部信息,包括 ... -
Android中Intent对应的category列表大全
2010-12-24 10:57 2022在Android中使用Intent对应的category列表最 ... -
Android android.intent.category解析
2010-12-24 10:07 17841、要弄清楚这个问题,首先需要弄明白什么是implicit(隐 ... -
Android 适配不同分辨率&hdpi、mdpi、ldpi&横屏竖屏
2010-12-20 10:54 3694一:不同的layout Android手机屏幕大小不一, ... -
Android 模拟器安装及使用
2010-11-14 02:21 1951你是否想测试下最新的 Google Android 操作系统, ... -
Android DDMS使用
2010-11-13 20:51 2561DDMS 的全称是Dalvik Debug M ... -
Android 学习e资源
2010-11-07 23:43 1491[url]http://www.3gfeixun.com/de ... -
Android SDK安装
2010-11-07 23:36 17001.下载:http://developer.android.c ... -
Android简介
2010-11-01 23:17 5435Android一词的本义指“机器人”,同时也是Google于2 ...
相关推荐
在启动过程中,AMS会解析Launcher的Manifest文件,创建并启动Activity。 2. **布局设计** Launcher的主要布局由多个组件构成,如GridWidget(图标网格)、AllAppsView(所有应用视图)和DockBar(底栏)。这些组件...
#### 一、Launcher启动过程解析 Android Launcher 的启动流程是一个非常重要的概念,对于理解Android系统的启动机制以及如何定制自己的Launcher应用有着关键的作用。 **1.1 Linux Kernel 启动与Android Runtime ...
Android启动器(Launcher)是Android系统中一个至关重要的组件,它是用户与设备交互的门户,负责展示应用程序快捷方式、小部件以及主屏幕布局。深入理解Android Launcher的源码可以帮助开发者定制自己的启动器,优化...
Android提供了一个名为`PackageParser`的内部类,用于解析APK的Manifest文件,但这个类不是公开API,因此在常规开发中不建议直接使用。不过,我们可以通过以下步骤间接实现: 1. **读取APK文件**:使用`...
本篇文章将深入探讨如何设计一个基本的Launcher,并以提供的"MyLauncher V1.0"为例进行详细解析。 一、理解Android Launcher 1. **基本架构**:Android Launcher是由多个组件构成的,主要包括Activity(主屏幕)、...
<category android:name="android.intent.category.LAUNCHER"/> </manifest> ``` - **解析**: - 根标签 `<manifest>` 指定了应用的包名为 `com.my_domain.app.helloactivity`。 - `<application>` 定义了...
当一个Intent被创建并传递时,Android系统会根据其描述进行解析,查找匹配的组件。解析过程主要考虑以下因素: 1. **动作匹配**:系统遍历Manifest文件中的所有声明,寻找具有与Intent动作相匹配的组件。 2. **...
理解Intent的构成、类型和解析过程,是实现launcher与应用之间有效通信的前提。 5. **Manifest配置**: - AndroidManifest.xml文件是应用的元数据,定义了应用的组件、权限和其他配置。必须清楚如何配置intent-...
《深入解析Android 4.0 Launch源代码》 在Android操作系统的发展历程中,Android 4.0(代号Ice Cream Sandwich,简称ICS)是一个重要的里程碑,它为用户界面带来了重大改进,同时也对开发者提供了更多高级功能。...
<category android:name="android.intent.category.LAUNCHER"/> ``` 这里的`<intent-filter>`用于描述Activity的启动条件,如ACTION_MAIN和CATEGORY_LAUNCHER组合表示这是一个主入口点,可从应用启动器启动。 ...
3. **解析manifest中的icon信息**:在解析后的`Document`中,找到`<application>`标签,通常icon信息会在这个标签的`android:icon`属性中。 ```java Element applicationNode = (Element) doc.getElementsByTagName...
2. 在AndroidManifest.xml中声明Activity:需要在manifest文件中添加对应的Activity声明,并指定它的主题为`android:theme="@android:style/Theme.Holo.Preference"`或其兼容版本,以便获得适当的样式。 ```xml ...
本文将详细解析如何在Android Studio中设计一个启动页面。 首先,我们需要理解启动页面的基本结构。通常,它由一个简单的Activity组成,这个Activity会显示一段时间,然后自动跳转到主应用界面。在Android Studio中...
----------------------------------- Android 编程基础 1 封面----------------------------------- Android 编程基础 2 开放手机联盟 --Open --Open --Open --Open Handset Handset Handset Handset Alliance ...
- **`android:icon`**:指定显示在Launcher或任务切换器中的图标资源ID。 - **`android:label`**:为Activity提供一个友好的名称,可以是一个字符串资源的引用。 - **`android:launchMode`**:控制Activity的启动...
在Android应用开发中,二维码扫描是一项常见的功能,它允许用户通过手机摄像头快速读取和解析二维码中的信息。本文将详细讲解如何一步步集成二维码扫描功能,包括必要的依赖添加、布局文件的配置以及AndroidManifest...
4. **获取版本号**:同样在AndroidManifest.xml中,通过解析<manifest>和标签的android:versionCode和android:versionName属性。 对于IPA文件的解析: 1. **读取IPA图标**:IPA解压后,.app文件是一个捆绑包,包含...
Proguard不仅能够混淆代码,使其难以被逆向工程解析,还能压缩和优化Java字节码,删除不必要的类、字段、方法和属性,以及注释。在项目中,我们可以通过在`Android.mk`文件中设置`LOCAL_PROGUARD_FLAG_FILES`来配置...
- 了解Java在Android中的应用,包括网络请求库(如Retrofit、Volley)、JSON解析(如Gson、Jackson)、异步处理(如AsyncTask、Retrofit回调)等。 9. Android最佳实践: - 学习如何优雅地处理版本检测错误,如...