ChinaUnix.net
相关文章推荐:

ARM android 启动画面

 

  Andrew huang <bluedrum@163.com>

 http://bbs.hiapk.com/viewthread.php?tid=1764447&extra=&page=1

by bluedrum - 移动操作系统 - 2011-12-23 02:09:33 阅读(959) 回复(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)

关于arm启动的一篇文章! #1 基 于arm的芯片多数为复杂的片上系统,这种复杂系统里的多数硬件模块都是可配置的,需要由软件来设置其需要的工作状态。因此在用户的应用程序之前,需要由 专门的一段代码来完成对系统的初始化。由于这类代码直接面对处理器内核和硬件...

by jettlau - Linux文档专区 - 2008-11-06 19:44:54 阅读(914) 回复(0)

android动画的实现分两种方式,一种方式是补间动画 Teen Animation,就是说你定义一个开始和结束,中间的部分由程序运算得...

by DerekGuo_lzu - 移动操作系统 - 2011-12-22 08:51:16 阅读(601) 回复(0)

android动画开发之Animation动画效果 ........... 如何在Java代码中定义动画 Java代码[code]1.// 在代码中定义 动画实例对象 2.private Animation myAnimation_Alpha; 3.private Animation myAnimation_Scale; 4.private Animation myAnimation_Translate; 5.private Animation myAnimation_Rotate; 6. 7.// 根据各自...

android

by 听老歌 - 移动操作系统 - 2011-11-17 16:41:27 阅读(1477) 回复(0)

android动画开发之Animation动画效果 动画类型 android的animation由四种类型组成 XML中 alpha 渐变透明度动画效果 scale 渐变尺寸伸缩动画效果 translate 画面转换位置移动动画效果 rotate 画面转移旋转动画效果 JavaCode中[code]AlphaAnimation 渐变透明度动画效果 ScaleAnimation 渐变尺寸伸缩动画效果 TranslateAni...

android

by 听老歌 - 移动操作系统 - 2011-11-17 16:40:37 阅读(1329) 回复(0)

android 动画专题研究 转http://www.eoeandroid.com/forum.php?mod=viewthread&tid=564 动画专题研究 一 动画效果编程基础--Animationandroid 动画类型 android的animation由四种类型组成 XML中 alpha 渐变透明度动画效果 scale 渐变尺寸伸缩动画效果 translate 画面转换位置移动动画效果 rotate 画面转移旋转动画效果 JavaCode中 AlphaAnimation 渐变透明度动画效果 ScaleAnimation 渐变尺寸伸...

by 听老歌 - 移动操作系统 - 2012-01-06 16:55:05 阅读(671) 回复(1)

android 页面切换动画效果 如下一个例子: Animation animation1 = AnimationUtils.loadAnimation(HomeActivity.this, R.anim.my_rotate_action); searchImageView.startAnimation(animation1); 在2.0之后有了overridePendingTransition() ,其中里面两个参数,一个是前一个activity的退出两一个activity的进入,[code]@Override public void onCreate(Bundle savedInstanceState) { super.onC...

android

by 中关村村草 - 移动操作系统 - 2011-12-23 23:43:48 阅读(1946) 回复(1)

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 阅读(1446) 回复(0)

arm9 linux开机动画。 谁做过?望会的大哥赐教!非常感谢

by hongjiujing - 嵌入式开发 - 2008-07-28 15:49:27 阅读(5855) 回复(6)

1、

IAR汇编指令SFB和SFE

SFB Segment begin 段开始

语法格式
SFB(segment [{+|-} offset])

参数
segment: 可重定位段的段名, 必须在SFB使用前已定义
offset : 从开始地址的偏移, 是一个可选参数, 当偏移量省略时, 可以...

by number007cool - 移动操作系统 - 2011-12-22 08:51:08 阅读(2177) 回复(0)