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...
这里所说的LOGO是在KERNAL启动后由init进程调用显示的LOGO. 很久以前曾经做过一次,记得当时没有先转换成RAW格式,又没有记笔记,只好重新试过,这次先记录下来,有简便方法时再更新。 android中使用的LOGO是rle格式,一种压缩格式。 1. 将图象转换为RAW格式,使用GIMP或者Advanced Batch Converter软件,将图象转换为RAW格式。试过photoshop cs3,另存的RAW格式是PRAW格式,不能用的。 2. 使用android自...
蓝魔音悦汇T11强行装入谷歌(Google)android智能操作系统的消息,早已成为坊间讨论的热点话题,不过,寥寥简单的文字图片,实在难解玩家好奇。今天,笔者特意从蓝魔音悦汇厂商获得机密、内部、测试版神秘固件,为大家带来更加详尽的“T11+android”初体验。 android固件更新,Start! 音悦汇“钛2”T11,是蓝魔音悦汇与福州瑞星微合作开放的新一代多媒体娱乐终端,它采用RK28主控芯片,搭载5.0英寸800*480分辨率全触摸屏、支...
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 ...
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...
http://blog.csdn.net/wo6925371/article/details/5992137
package com.webabcd.service;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.ServiceConnection;
import android.os.Bundle;
impor...