博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 常见的补间动画
阅读量:6247 次
发布时间:2019-06-22

本文共 1094 字,大约阅读时间需要 3 分钟。

一、使用xml文件定义动画 (在animator文件夹下)

  1、定义

 <?xml version="1.0" encoding="utf-8"?>

<animator xmlns:android="http://schemas.android.com/apk/res/android" >

    <objectAnimator 

        android:propertyName="translationX"

        android:duration="2000"

        android:valueFrom="10"

        android:valueTo="50">

    </objectAnimator>

</animator>

 2、在代码中使用

//使用xml设置动画

       //先获取到动画对象

    ObjectAnimator oa=(ObjectAnimator) AnimatorInflater.loadAnimator(this,R.animator.oanimator);
    oa.setTarget(iv);
    oa.start();

1、平移

       TranslateAnimation ta=new TranslateAnimation(0, 50, 0, 50); 

     ta.setDuration(2000);
     iv.startAnimation(ta);     //对控件绑定动画

2、缩放

     ScaleAnimation sa=new ScaleAnimation(1, 2, 1, 2);

    sa.setDuration(2000);
    iv.startAnimation(sa);

3、翻转

     RotateAnimation ra=new RotateAnimation(90, 360);

    ra.setDuration(2000);
    iv.startAnimation(ra);

4、透明

      AlphaAnimation aa=new AlphaAnimation(0,1);
    aa.setDuration(2000);
    iv.startAnimation(aa);

二、Activity 之间切换的动画

1、在/res/anim 文件夹下定义in_left.xml文件

  <?xml version="1.0" encoding="utf-8"?>

2、在代码中调用

overridePendingTransition(R.anim.in_left, R.anim.out_to_right);

转载于:https://www.cnblogs.com/ppablog/p/6115009.html

你可能感兴趣的文章
手机上的大数据:移动互联网的入口
查看>>
Can't connect to local MySQL server through socket
查看>>
用户登陆时隐藏密码
查看>>
VBA--word模板标签替换操作
查看>>
Winxp下安装Django
查看>>
rsync+nfs+inotify
查看>>
分布式系统部署方案
查看>>
Linux下虚拟终端Screen
查看>>
mysql密码过期
查看>>
苏宁互联网玩法变了
查看>>
入股博纳,不想吃独食的阿里影业是想多点开花
查看>>
pdf如何修改错误
查看>>
mybatis学习五 多参数查询(一)
查看>>
sysctl命令--Linux命令应用大词典729个命令解读
查看>>
SSH登录很慢问题的解决方法
查看>>
基础概念学习之ObjectManager(对象管理器)
查看>>
nginx main和events模块学习
查看>>
centos7下NFS使用与配置
查看>>
云授权重新定义互联网下的软件保护
查看>>
在java中使用solr7.2.0 新旧版本创建SolrClient对比
查看>>