• 安卓——animotion


    1. 在 layout下建立文件夹 animator写入动画文件xml
    <?xml version="1.0" encoding="utf-8"?>
    <!--<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--android:duration="3000"-->
    <!--android:propertyName="textSize"-->
    <!--android:valueType="floatType"-->
    <!--android:valueFrom="10.0"-->
    <!--android:valueTo="40.0"-->
    <!--android:repeatCount="-1"-->
    <!--android:repeatMode="reverse"-->
    <!--/>-->
    <!--<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--android:duration="3000"-->
    <!--android:propertyName="alpha"-->
    <!--android:valueType="floatType"-->
    <!--android:valueFrom="0.0"-->
    <!--android:valueTo="1.0"-->
    <!--android:repeatCount="-1"-->
    <!--android:repeatMode="reverse" />-->

    <!--<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--android:duration="3000"-->
    <!--android:propertyName="translationX"-->
    <!--android:valueType="floatType"-->
    <!--android:valueFrom="0.0"-->
    <!--android:valueTo="300.0"-->
    <!--android:repeatCount="-1"-->
    <!--android:repeatMode="reverse" />-->
    <!--<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--android:duration="3000"-->
    <!--android:propertyName="rotation"-->
    <!--android:valueType="floatType"-->
    <!--android:valueFrom="0.0"-->
    <!--android:valueTo="360.0"-->
    <!--android:repeatCount="-1"-->
    <!--android:repeatMode="restart" />-->

    <!--<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--android:duration="3000"-->
    <!--android:propertyName="scaleX"-->
    <!--android:valueType="floatType"-->
    <!--android:valueFrom="0.0"-->
    <!--android:valueTo="2.0"-->
    <!--android:repeatCount="-1"-->
    <!--android:repeatMode="reverse" />-->



    <!--android:translationX=""-->
    <!--android:alpha=""-->
    <!--android:rotation=""-->
    <!--android:scaleX=""-->

    <set android:ordering="together"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="1000"
    android:propertyName="rotationY"
    android:valueType="floatType"
    android:valueFrom="0.0"
    android:valueTo="360.0"
    android:repeatCount="-1"
    android:repeatMode="restart" />

    <!--<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"-->
    <!--android:duration="3000"-->
    <!--android:propertyName="translationY"-->
    <!--android:valueType="floatType"-->
    <!--android:valueFrom="0.0"-->
    <!--android:valueTo="300.0"-->
    <!--android:repeatCount="-1"-->
    <!--android:repeatMode="reverse" />-->

    <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="3000"
    android:propertyName="textSize"
    android:valueType="floatType"
    android:valueFrom="10.0"
    android:valueTo="16.0"
    android:repeatCount="-1"
    android:repeatMode="reverse"
    />

    <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="1000"
    android:propertyName="textColor"
    android:valueType="colorType"
    android:valueFrom="#95868686"
    android:valueTo="#951455ed"
    android:repeatCount="-1"
    android:repeatMode="reverse"
    />

    </set>





    2. JAVA加载
    tv=(TextView) findViewById(R.id.tv);
    // 1 context
    Animator animator= AnimatorInflater.loadAnimator(MainActivity.this,R.animator.animator);
    animator.setTarget(tv);
    animator.start();
  • 相关阅读:
    IDEA导入项目后,导入artifacts 方法 以及 Spring的配置文件找不到的解决方法
    Tomcat8中如何内存溢出,如何增大内存?
    SpringSecurity-权限关联与控制
    学习黑马教学视频SSM整合中Security遇到的问题org.springframework.security.access.AccessDeniedException: Access is denied
    SSM项目中,关于Test类中不能使用Autowired注入bean的问题
    spring mvc绑定参数之 类型转换 有三种方式:
    maven缺失ojdbc6解决方案 :Missing artifact com.oracle:ojdbc6:jar:11.2.0.1.0问题解决 ojdbc包pom.xml出错
    学习SpringMVC 文件上传 遇到的问题,403:returned a response status of 403 Forbidden ,409文件夹未找到
    【转】Linux环境搭建FTP服务器与Python实现FTP客户端的交互介绍
    Protocol buffers--python 实践 简介以及安装与使用
  • 原文地址:https://www.cnblogs.com/embaobao/p/10720862.html
Copyright © 2020-2023  润新知