分类: 原创

bmp格式图片高度负值问题[miui第二帧logo制作]

无评论

2013 年 2 月 28 日 at 下午 9:08分类:原创

在处理miui第二帧logo时,得到的图片是经过RGB->BGR色彩转换的图片,但是这样并不能制作出成功的logo,会导致严重的失真,通过file查看发现其格式为:

PC bitmap, Windows 3.x format, 480 x -800 x 32

这就奇怪了,高度为负值。如下资料所示得知了BMP这一个黑暗历史:

更多…

adb shell的root权限(#与$)

3 条评论

2013 年 2 月 18 日 at 上午 10:26分类:原创

adb shell的root权限可以通过kitchen工具修改boot.img的default.prop文件中如下部分:

更多…

You cannot combine custom titles with other title features

无评论

2013 年 2 月 16 日 at 下午 3:25分类:原创

java.lang.IllegalStateException: Cannot broadcast before boot completed

9 条评论

2013 年 2 月 6 日 at 上午 9:17分类:原创

出现该错误的一个操作时,开机时多次插拔耳机,表现为关机动画重复播放。详细的错误信息为:

更多…

Android判断系统是否有软件打开文件mimetype/判断是否支持文件类型

无评论

2013 年 1 月 30 日 at 下午 5:29分类:原创

通过如下代码判断即可:

Intent mIntent = new Intent(Intent.ACTION_VIEW);
mIntent.setDataAndType(Uri.fromParts("file", "", null), mimetype);
ResolveInfo ri = getPackageManager().resolveActivity(mIntent,PackageManager.MATCH_DEFAULT_ONLY);

更多…

JNI WARNING: input is not valid Modified UTF-8: illegal start byte 0x【已解决】

无评论

2013 年 1 月 25 日 at 下午 6:17分类:原创

播放一首歌的时候出现该错误,导致表面上的重启。

具体信息为:

更多…