WEB开发网
开发学院手机开发Android 开发 Android 的 Animation 阅读

Android 的 Animation

 2010-04-22 16:05:00 来源:WEB开发网   
核心提示://第三个参数fromYDelta为动画起始时Y坐标上的移动位置// 第四个参数toYDelta为动画结束时Y坐标上的移动位置复制代码③设置动画持续时间myAnimation_Translate.setDuration(2000);//设置时间持续时间为 2000毫秒复制代码RotateAnimation① Rotat

//第三个参数fromYDelta为动画起始时Y坐标上的移动位置

// 第四个参数toYDelta为动画结束时Y坐标上的移动位置

复制代码

③ 设置动画持续时间

myAnimation_Translate.setDuration(2000);

//设置时间持续时间为 2000毫秒

复制代码

RotateAnimation

①  RotateAnimation类对象定义

private AlphaAnimation myAnimation_Alpha;

复制代码

② RotateAnimation类对象构造

RotateAnimation(float fromDegrees, float toDegrees,

int pivotXType, float pivotXValue, int pivotYType, float pivotYValue)

//第一个参数fromDegrees为动画起始时的旋转角度

//第二个参数toDegrees为动画旋转到的角度

//第三个参数pivotXType为动画在X轴相对于物件位置类型

//第四个参数pivotXValue为动画相对于物件的X坐标的开始位置

//第五个参数pivotXType 为动画在Y轴相对于物件位置类型

//第六个参数pivotYValue为动画相对于物件的Y坐标的开始位置

myAnimation_Rotate=new RotateAnimation(0.0f, +350.0f,

Animation.RELATIVE_TO_SELF,0.5f,Animation.RELATIVE_TO_SELF, 0.5f);

复制代码

③ 设置动画持续时间

myAnimation_Rotate.setDuration(3000);

//设置时间持续时间为 3000毫秒

复制代码

如何使用Java代码中的动画效果

使用从View父类继承过来的方法startAnimation()来为View或是子类View等等添加一个动画效果

上一页  2 3 4 5 6 7 

Tags:Android Animation

编辑录入:coldstar [复制链接] [打 印]
赞助商链接