Android动画效果

动画类型

android的animation由四种类型组成

XML中:alpha:渐变透明度动画效果

scale:渐变尺度伸缩动画效果

translate:画面转换位置移动动画效果

rotate:画面转移旋转动画效果

JavaCode中:AlphaAnimation:渐变透明度动画效果
ScaleAnimation:渐变尺寸伸缩动画效果
TranslateAnimation:画面转换位置移动动画效果
RotateAnimation:画面转移旋转动画效果

Android动画模式

Animation主要有两种动画模式:
一种是tweened animation(渐变动画)

XML中
JavaCode
alpha
AlphaAnimation
scale
ScaleAnimation


一种是frame by frame(画面转换动画)
XML中
JavaCode
translate
TranslateAnimation
rotate
RotateAnimation

Android的动画效果分为两种,一种是tweened animation(补间动画),第二种是frame by frame animation。一般我们用的是第一种。补间动画又分为AlphaAnimation,透明度转换 RotateAnimation,旋转转换 ScaleAnimation,缩放转换 TranslateAnimation 位置转换(移动)。

动画效果在anim目录下的xml文件中定义,在程序中用AnimationUtils.loadAnimation(Context context,int ResourcesId)载入成Animation对象,在需要显示动画效果时,执行需要动画的View的startAnimation方法,传入Animation,即可。切换Activity也可以应用动画效果,在startActivity方法后,执行overridePendingTransition方法,两个参数分别是切换前的动画效果,切换后的动画效果,下面的例子中传入的是两个alpha动画,以实现切换Activity时淡出淡入,渐隐渐现效果。

下面贴出代码:
两个Activity的布局文件 main.xml:

<?xml version="1.0" encoding="utf-8"?>
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 
android:orientation="vertical"
 
android:layout_width="fill_parent"
 
android:layout_height="fill_parent"
 
android:id="@+id/ll2"
 
>
 
<TextView 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="Activity2"
 
/>
 
<Button android:id="@+id/bt2"
 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="返回main"
 
/>
 
</LinearLayout> 

动画效果XML文件,全部存放在anim目录下:
a1.xml 淡出效果

java代码:
<?xml version="1.0" encoding="utf-8"?>
 
<set xmlns:android="http://schemas.android.com/apk/res/android">
 
<alpha
 
android:fromAlpha="1.0"
 
android:toAlpha="0.0"
 
android:duration="500"
 
/>
 
</set>
 
<!-- 
fromAlpha:开始时透明度
 
toAlpha:结束时透明度
 
duration:动画持续时间
 
--> 

rotate.xml 旋转效果:

java代码:

<?xml version="1.0" encoding="utf-8"?>
 
<set xmlns:android="http://schemas.android.com/apk/res/android">
 
<rotate
 
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
 
android:fromDegrees="300"
 
android:toDegrees="-360"
 
android:pivotX="10%"
 
android:pivotY="100%"
 
android:duration="10000" />
 
</set>
 
<!-- 
fromDegrees开始时的角度
 
toDegrees动画结束时角度
 
pivotX,pivotY不太清楚,看效果应该是定义旋转的圆心的
 
--> 


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值