xml代码块:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
   
    <ImageView
        android:id="@+id/img_animations"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/img1"/>
   
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#ff00ff"/>
   
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_gravity="center_horizontal"
        >
       
        <Button
            android:id="@+id/but1"
            android:layout_weight="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="旋转"
            android:textColor="#ff00ff"/>
       
        <Button
            android:id="@+id/but2"
            android:layout_weight="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:text="位移"
            android:textColor="#ff00ff"/>
       
        <Button
            android:id="@+id/but3"
            android:layout_weight="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:text="渐变"
            android:textColor="#ff00ff"/>
       
        <Button
            android:id="@+id/but4"
            android:layout_weight="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:text="缩放"
            android:textColor="#ff00ff"/>
       
    </LinearLayout>

</LinearLayout>

JAVA代码块:

package com.sumzom.animations;

import com.example.com.sumzom.teach.R;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.RotateAnimation;
import android.view.animation.ScaleAnimation;
import android.view.animation.TranslateAnimation;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;

/**
 * @author sumzom
 * QQ2356066132
 * tween动画基本使用方法
 * */
public class AnimationsTest extends Activity implements OnClickListener{

private Button but1,but2,but3,but4 = null;
 private ImageView img_animations = null;
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.animations);
  
  initWithView();
  
  initWithLogic();
  
 }

private void initWithLogic() {
  // TODO Auto-generated method stub
  
 }

private void initWithView() {
  // TODO Auto-generated method stub
  but1 = (Button) findViewById(R.id.but1);
  but2 = (Button) findViewById(R.id.but2);
  but3= (Button) findViewById(R.id.but3);
  but4 = (Button) findViewById(R.id.but4);
  img_animations = (ImageView) findViewById(R.id.img_animations);
  
  but1.setOnClickListener(this);
  but2.setOnClickListener(this);
  but3.setOnClickListener(this);
  but4.setOnClickListener(this);
 }

@Override
 public void onClick(View arg0) {
  // TODO Auto-generated method stub
  switch (arg0.getId()) {
  case R.id.but1:
   but1();
   Toast.makeText(getApplicationContext(), "旋转",
     Toast.LENGTH_SHORT).show();
   
   break;
   
        case R.id.but2:
   but2();
         Toast.makeText(getApplicationContext(), "位移",
     Toast.LENGTH_SHORT).show();
         
   break;
   
        case R.id.but3:
   but3();
         Toast.makeText(getApplicationContext(), "渐变",
     Toast.LENGTH_SHORT).show();
         
   break;
   
        case R.id.but4:
   but4();
         Toast.makeText(getApplicationContext(), "缩放",
     Toast.LENGTH_SHORT).show();
         
   break;

default:
   break;
  }
 }

//缩放
 private void but4() {
  // fromX, toX, fromY, toY, pivotXType,
  //pivotXValue, pivotYType, pivotYValue)
  AnimationSet set = new AnimationSet(true);
  ScaleAnimation animation = new ScaleAnimation(
    0, 0.1f, 0, 0.5f, Animation.RELATIVE_TO_SELF,
    0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
  animation.setDuration(3000);
  set.addAnimation(animation);
  img_animations.startAnimation(set);
 }

/**
 * @author sumzom
 * QQ2356066132
 * tween动画基本使用方法
 * 渐变
 * */
 private void but3() {
  //fromAlpha, toAlpha起始背景透明度,结束透明度
  AnimationSet animationSet = new AnimationSet(true);
  AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0.2f);
  alphaAnimation.setDuration(5000);
  animationSet.addAnimation(alphaAnimation);
  img_animations.startAnimation(animationSet);
 }

//位移
 private void but2() {
  // TODO Auto-generated method stub
  /**
   * @author sumzom
         * QQ2356066132
         * tween动画基本使用方法
   * 1~2参数 fromXType fromXValue:起始位置X类型与值
   * 3~4参数 toXType toXValue:结束位置X类型与值
   * 5~6参数 fromYType fromYValue:起始位置Y类型与值
   * 7~8参数 toYType toYValue:结束位置Y类型与值
   * */
  AnimationSet set = new AnimationSet(true);
  TranslateAnimation TSAM = new TranslateAnimation(
    Animation.RELATIVE_TO_SELF, 0, Animation.RELATIVE_TO_SELF,
    0, Animation.RELATIVE_TO_SELF, 0, Animation.RELATIVE_TO_SELF,
    0.5f);
  TSAM.setDuration(3000);
  set.addAnimation(TSAM);
  img_animations.startAnimation(set);
  
 }
 
 
 //旋转
 private void but1() {
  // TODO Auto-generated method stub
  AnimationSet set = new AnimationSet(true);
  /**
   * @author sumzom
         * QQ2356066132
         * tween动画基本使用方法
   * RotateAnimation:旋转动画
   * 参数一:fromDegrees,起始角度
   * 参数二:toDegrees,结束角度
   * 后四参数确定圆心是哪个
   * 参数三:pivotXType,X坐标类型
   * 参数四:pivotXValue,X值
   * 参数五:pivotYType,Y类型
   * 参数六:pivotYValue,Y值
   * */
  RotateAnimation animation = new RotateAnimation(0, 360,
    Animation.RELATIVE_TO_SELF, 0.5f,
      Animation.RELATIVE_TO_SELF, 0.5f);
  
  animation.setDuration(3000);
  set.addAnimation(animation);
  img_animations.startAnimation(set);
  
 }
 
}

运行效果:

 
 
 
 
 
 
 
 

安卓开发基础之tween动画基本使用,代码教学的更多相关文章

  1. android安卓开发基础小笔记,添加按钮事件,打开新窗体,窗体传值,回传

    给一个按钮添加onclick事件 //获取按钮对象 Button Aiyo = (Button)findViewById(R.id.button1); Aiyo.setOnClickListener( ...

  2. 安卓开发学习历程1——《第一行代码》coolweather项目setOnItemClickListener函数,Sql语句修改对模拟app程序机影响

    今天,将<第一行代码>最后实战的coolweather项目,认真做了一遍. 今晚,在书中第一阶段开发代码认眞在Android studio敲完,发现setOnItemClickListen ...

  3. Web前端开发基础 第四课(盒代码模型)

    盒模型代码简写 还记得在讲盒模型时外边距(margin).内边距(padding)和边框(border)设置上下左右四个方向的边距是按照顺时针方向设置的:上右下左.具体应用在margin和paddin ...

  4. Eclipse安卓开发环境搭建

    前提,Java SDK和Eclipse搭建完毕 下载android SDK并安装 (官网:http://sdk.android-studio.org/ ) 找到安装目录,运行“SDK Manager. ...

  5. iOS开发基础-九宫格坐标(6)

    继续对iOS开发基础-九宫格坐标(5)中的代码进行优化. 优化思路:把字典转模型部分的数据处理操作也拿到模型类中去实现,即将 ViewController 类实现中 apps 方法搬到 WJQAppI ...

  6. Android(安卓)开发通过NDK调用JNI,使用opencv做本地c++代码开发配置方法 边缘检测 范例代码

    以前写过两个Android开发配置文档,使用NDK进行JNI开发,这样能够利用以前已经写好的C++代码. 前两篇博客地址: http://blog.csdn.net/watkinsong/articl ...

  7. Android基础夯实--重温动画(一)之Tween Animation

    心灵鸡汤:真正成功的人生,不在于成就的大小,而在于你是否努力地去实现自我,喊出自己的声音,走出属于自己的道路. 摘要 不积跬步,无以至千里:不积小流,无以成江海.学习任何东西我们都离不开扎实的基础知识 ...

  8. iOS开发UI篇—核心动画(基础动画)

    转自:http://www.cnblogs.com/wendingding/p/3801157.html 文顶顶 最怕你一生碌碌无为 还安慰自己平凡可贵 iOS开发UI篇—核心动画(基础动画) iOS ...

  9. 安卓开发_浅谈Android动画(四)

    Property动画 概念:属性动画,即通过改变对象属性的动画. 特点:属性动画真正改变了一个UI控件,包括其事件触发焦点的位置 一.重要的动画类及属性值: 1.  ValueAnimator 基本属 ...

随机推荐

  1. C#密封类

    密封类 密封类使用sealed修饰符声明. 密封类中不可能有抽象方法[因为:抽象方法必须在抽象类中,而抽象类不能是密封的或者是静态的,也就是说abstract 和sealed不能同时修饰一个类]   ...

  2. JavaScript基础插曲—获取标签,插入元素,操作样式

    Js基础 1:document.write() 这个是动态创建元素内容,利用js.这个可以利用js来创建元素,文本,标签等,document.write()与document.writeln()的区别 ...

  3. mvc 对一个或者多个实体验证失败

    为了解决“对一个或者多个实体验证失败”,关闭调用SaveChanges() 的实体属性合法性验证(谨慎使用) db.Configuration.ValidateOnSaveEnabled = fals ...

  4. Jquery获取checkbox属性checked为undefined

    说明:本文来自新浪博客,因为无法收藏,故直接copy过来备注,以后好查询 原网址:http://blog.sina.com.cn/s/blog_6810dfc20101jddq.html 使用jQue ...

  5. iOS阶段学习第四天笔记(循环)

    iOS学习(C语言)知识点整理笔记 一.分支结构 1.分支结构分为单分支 即:if( ){ } ;多分支 即:if( ){ }else{ }  两种 2.单分支 if表达式成立则执行{ }里的语句:双 ...

  6. Facebook的Hack语言三大看点

    Hack语言主要有三大看点:类型化.异步.集合. Hack最基础的特性就是类型标注.PHP5已经开始支持对象的类型化,PHP7也提供了标量类型化声明.Hack提供了全面的类型标注支持,与其typech ...

  7. 2016弱校联盟十一专场10.5---As Easy As Possible(倍增)

    题目链接 https://acm.bnu.edu.cn/v3/contest_show.php?cid=8506#problem/A problem description As we know, t ...

  8. GJM : Unity3D - UI - UI边缘流光特效小技巧 [转载]

    感谢您的阅读.喜欢的.有用的就请大哥大嫂们高抬贵手"推荐一下"吧!你的精神支持是博主强大的写作动力以及转载收藏动力.欢迎转载! 版权声明:本文原创发表于 [请点击连接前往] ,未经 ...

  9. java内存模型-重排序

    数据依赖性 如果两个操作访问同一个变量,且这两个操作中有一个为写操作,此时这两个操作之间就存在数据依赖性.数据依赖分下列三种类型: 名称 代码示例 说明 写后读 a = 1;b = a; 写一个变量之 ...

  10. NotSerializableException解决方法

    NotSerializableException 问题描述: 想要写入对象的时候的时候回抛出NotSerializableException:类名 原因: 写入的对象没有序列化,即没有实现java.i ...