Android 四种动画效果的调用实现代码

 更新时间:2013年01月21日 12:05:07   作者:  
在这里, 我将每种动画分别应用于四个按钮为例,需要的朋友可以参考下
(1) main.xml 代码如下:(声明四个按钮控件)

XML代码:
复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
android:id="@+id/widget32"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<TextView
android:id="@+id/widget29"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:layout_x="0px"
android:layout_y="0px"
>
</TextView>
<Button
android:id="@+id/button_Alpha"
android:layout_width="150px"
android:layout_height="150px"
android:text="Alpha动画"
android:textSize="50px"
android:layout_x="0px"
android:layout_y="30px">
</Button>
<Button
android:id="@+id/button_Scale"
android:layout_width="150px"
android:layout_height="150px"
android:text="Scale动画"
android:textSize="50px"
android:layout_x="0px"
android:layout_y="180px">
</Button>
<Button
android:layout_width="150px"
android:layout_height="150px"
android:text="Translate动画"
android:layout_x="161px"
android:layout_y="30px"
android:textSize="30px"
android:id="@+id/button_Translate">
</Button>
<Button
android:id="@+id/button_Rotate"
android:layout_width="150px"
android:layout_height="150px"
android:text="Rotate动画"
android:layout_y="180px"
android:layout_x="161px"
android:textSize="44px">
</Button>
</AbsoluteLayout>

java代码:
复制代码 代码如下:

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Button;

public class myActionAnimation extends Activity implements OnClickListener {
/** Called when the activity is first created. */
private Button button_alpha;
private Button button_scale;
private Button button_translate;
private Button button_rotate;
private Animation myAnimation_Alpha;
private Animation myAnimation_Scale;
private Animation myAnimation_Translate;
private Animation myAnimation_Rotate;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

button_alpha = (Button) findViewById(R.id.button_Alpha);
button_alpha.setOnClickListener(this);

button_scale = (Button) findViewById(R.id.button_Scale);
button_scale.setOnClickListener(this);

button_translate = (Button) findViewById(R.id.button_Translate);
button_translate.setOnClickListener(this);

button_rotate = (Button) findViewById(R.id.button_Rotate);
button_rotate.setOnClickListener(this);
}
public void onClick(View button) {
// TODO Auto-generated method stub
switch (button.getId()) {
case R.id.button_Alpha: {
myAnimation_Alpha = AnimationUtils.loadAnimation(this,R.layout.my_alpha_action);
button_alpha.startAnimation(myAnimation_Alpha);
}
break;
case R.id.button_Scale: {
myAnimation_Scale= AnimationUtils.loadAnimation(this,R.layout.my_scale_action);
button_scale.startAnimation(myAnimation_Scale);
}
break;
case R.id.button_Translate: {
myAnimation_Translate= AnimationUtils.loadAnimation(this,R.layout.my_translate_action);
button_translate.startAnimation(myAnimation_Translate);
}
break;
case R.id.button_Rotate: {
myAnimation_Rotate= AnimationUtils.loadAnimation(this,R.layout.my_rotate_action);
button_rotate.startAnimation(myAnimation_Rotate);
}
break;

default:
break;
}
}
}

效果图:

相关文章

  • 详解Android的四大应用程序组件

    详解Android的四大应用程序组件

    这篇文章主要介绍了Android的应用程序组件的相关资料,帮助大家更好的理解和使用Android,感兴趣的朋友可以了解下
    2021-01-01
  • Android实现手机振动设置的方法

    Android实现手机振动设置的方法

    这篇文章主要介绍了Android实现手机振动设置的方法,涉及Android页面布局、属性及功能设置的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-09-09
  • Android4.0.x Home键事件拦截监听的方法

    Android4.0.x Home键事件拦截监听的方法

    这篇文章主要介绍了Android4.0.x Home键事件拦截监听的方法,对比分析了2.3.x的实现方法,分析了4.0.x实现Home键事件拦截监听的相关技巧,需要的朋友可以参考下
    2016-02-02
  • Android利用CountDownTimer实现验证码倒计时效果实例

    Android利用CountDownTimer实现验证码倒计时效果实例

    这篇文章主要给大家介绍了关于Android如何利用CountDownTimer实现验证码倒计时效果的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。
    2017-10-10
  • 详解Android:向服务器提供数据之get、post方式

    详解Android:向服务器提供数据之get、post方式

    本篇文章主要介绍了详解Android:向服务器提供数据之get、post方式,具有一定的参考价值,有兴趣的可以了解一下。
    2017-03-03
  • Android实现评论栏随Recyclerview滑动左右移动

    Android实现评论栏随Recyclerview滑动左右移动

    这篇文章主要介绍了Android实现评论栏随Recyclerview滑动左右移动效果,仿约会吧应用详情页实现,感兴趣的小伙伴们可以参考一下
    2016-05-05
  • Android事件分发机制的详解

    Android事件分发机制的详解

    这篇文章主要介绍了Android事件分发机制的详解的相关资料,希望通过本文能帮助到大家,让大家理解掌握Android事件分发机制,需要的朋友可以参考下
    2017-09-09
  • Android制作简单垂直上拉下滑View效果

    Android制作简单垂直上拉下滑View效果

    这篇文章主要介绍了Android制作简单垂直上拉下滑View效果的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-01-01
  • Android中常用的XML生成方法实例分析

    Android中常用的XML生成方法实例分析

    这篇文章主要介绍了Android中常用的XML生成方法,以实例形式较为详细的分析了Android生成XML的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下
    2015-10-10
  • Android实现拖动小球跟随手指移动效果

    Android实现拖动小球跟随手指移动效果

    这篇文章主要为大家详细介绍了Android实现拖动小球跟随手指移动效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-03-03

最新评论