ChinaUnix.net
相关文章推荐:

android开机流程

android开机流程


1.    系统引导bootl...

by DerekGuo_lzu - 移动操作系统 - 2011-12-20 09:44:21 阅读(966) 回复(0)

相关讨论

本帖最后由 yfjelley 于 2012-08-20 17:52 编辑 android编译流程?高通平台?

by yfjelley - 移动操作系统 - 2012-08-21 10:36:38 阅读(1040) 回复(3)

本帖最后由 feiyang10086 于 2011-10-20 17:36 编辑 android recovery流程解析 恢复出厂设置流程概括: 一. 设置模块中进行恢复出厂设置操作,系统一共做了两件事: 1. 往 /cache/recovery/command 文件中写入命令字段: 2. 重启系统 二. 重启系统会必须进入 recovery 模式 进入 recovery 模式的几种方式 1. 通过读取 /cache 分区中文件 /cache/recovery/command 内容进入 2. 通过按键操作进入 (G1 通过同时按 HO...

移动开发

by feiyang10086 - 移动操作系统 - 2014-06-30 13:54:03 阅读(4759) 回复(5)

android输入事件流程 转载时请注明出处和作者联系方式 文章出处: http://www.limodev.cn/blog 作者联系方式:李先静 EventHub对输入设备进行了封装。输入设备驱动程序对用户空间应用程序提供一些设备文件,这些设备文件放在/dev/input里面。 EventHub扫描/dev/input下所有设备文件,并打开它们。 bool EventHub::openPlatformInput(void) { ... mFDCount = 1; mFDs = (pollfd *)calloc(1, sizeof(mFDs[0])); ...

by lixianjing - 移动操作系统 - 2009-08-07 10:16:33 阅读(1065) 回复(0)

1, 下载CreateG1Splash这个工具。 2, 转换一个图片。转换后的文件为mysplash.rgb565. 大小一定得为:307,200 bytes --转载原文 make sure this time that the file is exactly 307200 bytes! More or less will not fill the slot on the G1 and could spill over into something else bricking it. 3, 重启机器。进入fast boot 模式。 fastboot.exe flash splash1 mysplash.rgb565 fastboot.exe reboot 参考:http://android-d...

by linuxIsPerfect - Linux文档专区 - 2010-01-24 22:26:05 阅读(1822) 回复(0)

这里所说的LOGO是在KERNAL启动后由init进程调用显示的LOGO. 很久以前曾经做过一次,记得当时没有先转换成RAW格式,又没有记笔记,只好重新试过,这次先记录下来,有简便方法时再更新。 android中使用的LOGO是rle格式,一种压缩格式。 1. 将图象转换为RAW格式,使用GIMP或者Advanced Batch Converter软件,将图象转换为RAW格式。试过photoshop cs3,另存的RAW格式是PRAW格式,不能用的。 2. 使用android自...

by embed-tech - 移动操作系统 - 2009-08-16 16:23:43 阅读(2957) 回复(0)

dial流程 Activity.java (frameworks\base\core\java\android\app): public boolean onKeyDown(int keyCode, KeyEvent event) Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + str)); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); RecentCallsListActivity.java (packages\apps\contacts\src\com\android\co...

by gpephone - 移动操作系统 - 2009-04-28 09:08:26 阅读(1892) 回复(0)

发现自己从android源代码编译出来的系统(跑在模拟器上)在用telnet提供的功能 测试电话流程时有问题。 用adb logcat一看,发现Phone模块死在这个位置 if (!provisioned) { Log.i(LOG_TAG, "CallNotifier: rejecting incoming call: device isn't provisioned"); 往上看一个,原来是 boolean provisioned = Settings.Secure.getInt(mPhone.getContext().getContentResolver(),Settings.Secure.DEVICE_PROVISIONED, 0) != 0; 条件不满...

by figofuture - 移动操作系统 - 2009-04-14 20:46:30 阅读(2082) 回复(0)

android开机自启动程序 背景知识:当android启动时,会发出一个系统广播,内容为ACTION_BOOT_COMPLETED,它的字 符串常量表示为 android.intent.action.BOOT_COMPLETED。只要在程序中“捕捉”到这个消息,再启动之 即可。记住,android框架说:Don''t call me, I''ll call you back。我们要做的是做好接收这个消息的准备,而 实现的手段就是实现一个BroadcastReceiver。 1、界面Activity,BootStartDemo.java文件[code]01 public ...

android

by feiyang10086 - 移动操作系统 - 2011-10-10 22:56:26 阅读(1510) 回复(0)

The statup animation means the one you see before the launcher application comes out. It was a line with a red point goes from left to right again and again before, in android 1.0. Currently, on cupcake, it’s a text string, “android”, with shine goes from left to right. I found someone add an advertisement logo to that animation in a customized rom. So I studied how to remove that, or make a n...

by AppleDragon - 移动操作系统 - 2009-07-06 16:16:37 阅读(1444) 回复(0)

兄弟们:android播放视频的流程如下?我分析的对不? XXX.mp4 =》AwesomePlayer =》 OMXCodec =》Surfaceflinger =》(open GL ES)=》Gralloc =》 framebuffer("/dev/graphics/fb0")显示对不?

by houyizi313 - 移动操作系统 - 2013-05-09 17:54:01 阅读(1068) 回复(0)