首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
移动开发
> 详细
Android 动画之ScaleAnimation应用详解
时间:
2015-11-30 14:40:35
阅读:
277
评论:
0
收藏:
0
[点我收藏+]
标签:
android中提供了4中动画:
AlphaAnimation 透明度动画效果
ScaleAnimation 缩放动画效果
TranslateAnimation 位移动画效果
RotateAnimation 旋转动画效果
本节讲解ScaleAnimation 动画,
ScaleAnimation(
float fromX,
float toX,
float fromY,
float toY,
int pivotXType,
float pivotXValue,
int pivotYType,
float pivotYValue)
参数说明:
复制代码 代码如下:
float fromX 动画起始时 X坐标上的伸缩尺寸
float toX 动画结束时 X坐标上的伸缩尺寸
float fromY 动画起始时Y坐标上的伸缩尺寸
float toY 动画结束时Y坐标上的伸缩尺寸
int pivotXType 动画在X轴相对于物件位置类型
float pivotXValue 动画相对于物件的X坐标的开始位置
int pivotYType 动画在Y轴相对于物件位置类型
float pivotYValue 动画相对于物件的Y坐标的开始位置
代码:
复制代码 代码如下:
public
class MainActivity
extends Activity {
ImageView image;
Button start;
Button cancel;
@Override
public
void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
image = (ImageView) findViewById(R.id.main_img);
start = (Button) findViewById(R.id.main_start);
cancel = (Button) findViewById(R.id.main_cancel);
/** 设置缩放动画 */
final ScaleAnimation animation =
new ScaleAnimation(0.0f, 1.4f, 0.0f, 1.4f,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
animation.setDuration(2000);
//设置动画持续时间
/** 常用方法 */
//animation.setRepeatCount(int repeatCount);//设置重复次数
//animation.setFillAfter(boolean);//动画执行完后是否停留在执行完的状态
//animation.setStartOffset(long startOffset);//执行前的等待时间
start.setOnClickListener(
new OnClickListener() {
public
void onClick(View arg0) {
image.setAnimation(animation);
/** 开始动画 */
animation.startNow();
}
});
cancel.setOnClickListener(
new OnClickListener() {
public
void onClick(View v) {
/** 结束动画 */
animation.cancel();
}
});
}
}
[java]
view plain
copy
print
?
本节讲解ScaleAnimation 动画,
ScaleAnimation(
float fromX,
float toX,
float fromY,
float toY,
int pivotXType,
float pivotXValue,
int pivotYType,
float pivotYValue)
参数说明:
复制代码 代码如下:
float fromX 动画起始时 X坐标上的伸缩尺寸
float toX 动画结束时 X坐标上的伸缩尺寸
float fromY 动画起始时Y坐标上的伸缩尺寸
float toY 动画结束时Y坐标上的伸缩尺寸
int pivotXType 动画在X轴相对于物件位置类型
float pivotXValue 动画相对于物件的X坐标的开始位置
int pivotYType 动画在Y轴相对于物件位置类型
float pivotYValue 动画相对于物件的Y坐标的开始位置
代码:
复制代码 代码如下:
public
class MainActivity
extends Activity {
ImageView image;
Button start;
Button cancel;
@Override
public
void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
image = (ImageView) findViewById(R.id.main_img);
start = (Button) findViewById(R.id.main_start);
cancel = (Button) findViewById(R.id.main_cancel);
/** 设置缩放动画 */
final ScaleAnimation animation =
new ScaleAnimation(
0.0f,
1.4f,
0.0f,
1.4f,
Animation.RELATIVE_TO_SELF,
0.5f, Animation.RELATIVE_TO_SELF,
0.5f);
animation.setDuration(
2000);
//设置动画持续时间
/** 常用方法 */
//animation.setRepeatCount(int repeatCount);//设置重复次数
//animation.setFillAfter(boolean);//动画执行完后是否停留在执行完的状态
//animation.setStartOffset(long startOffset);//执行前的等待时间
start.setOnClickListener(
new OnClickListener() {
public
void onClick(View arg0) {
image.setAnimation(animation);
/** 开始动画 */
animation.startNow();
}
});
cancel.setOnClickListener(
new OnClickListener() {
public
void onClick(View v) {
/** 结束动画 */
animation.cancel();
}
});
}
}
[javascript]
view plain
copy
print
?
[javascript]
view plain
copy
print
?
本节讲解RotateAnimation 动画,
RotateAnimation (
float fromDegrees,
float toDegrees,
int pivotXType,
float pivotXValue,
int pivotYType,
float pivotYValue)
参数说明:
float fromDegrees:旋转的开始角度。
float toDegrees:旋转的结束角度。
int pivotXType:X轴的伸缩模式,可以取值为ABSOLUTE、RELATIVE_TO_SELF、RELATIVE_TO_PARENT。
float pivotXValue:X坐标的伸缩值。
int pivotYType:Y轴的伸缩模式,可以取值为ABSOLUTE、RELATIVE_TO_SELF、RELATIVE_TO_PARENT。
float pivotYValue:Y坐标的伸缩值。
代码:
<div
class=
"codetitle"><span style=
"CURSOR: pointer"><u>复制代码</u></span> 代码如下:</div><div id=
"code17269"
class=
"codebody">
public
class MainActivity
extends Activity {
ImageView image;
Button start;
Button cancel;
@Override
public
void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
image = (ImageView) findViewById(R.id.main_img);
start = (Button) findViewById(R.id.main_start);
cancel = (Button) findViewById(R.id.main_cancel);
/** 设置旋转动画 */
final RotateAnimation animation =
new RotateAnimation(0f,360f,Animation.RELATIVE_TO_SELF,
0.5f,Animation.RELATIVE_TO_SELF,0.5f);
animation.setDuration(3000);
//设置动画持续时间
/** 常用方法 */
//animation.setRepeatCount(int repeatCount);//设置重复次数
//animation.setFillAfter(boolean);//动画执行完后是否停留在执行完的状态
//animation.setStartOffset(long startOffset);//执行前的等待时间
start.setOnClickListener(
new OnClickListener() {
public
void onClick(View arg0) {
image.setAnimation(animation);
/** 开始动画 */
animation.startNow();
}
});
cancel.setOnClickListener(
new OnClickListener() {
public
void onClick(View v) {
/** 结束动画 */
animation.cancel();
}
});
}
} </div>
[javascript]
view plain
copy
print
?
本节讲解TranslateAnimation动画,TranslateAnimation比较常用,比如QQ,网易新闻菜单条的动画,就可以用TranslateAnimation实现,
通过TranslateAnimation(
float fromXDelta,
float toXDelta,
float fromYDelta,
float toYDelta) 来定义动画
参数说明:
<div
class=
"codetitle"><span style=
"CURSOR: pointer"><u>复制代码</u></span> 代码如下:</div><div id=
"code3207"
class=
"codebody">
float fromXDelta 动画开始的点离当前View X坐标上的差值
float toXDelta 动画结束的点离当前View X坐标上的差值
float fromYDelta 动画开始的点离当前View Y坐标上的差值
float toYDelta 动画开始的点离当前View Y坐标上的差值
</div>
常用方法:
<div
class=
"codetitle"><span style=
"CURSOR: pointer"><u>复制代码</u></span> 代码如下:</div><div id=
"code94921"
class=
"codebody">
animation.setDuration(
long durationMillis);
//设置动画持续时间
animation.setRepeatCount(
int i);
//设置重复次数
animation.setRepeatMode(Animation.REVERSE);
//设置反方向执行
</div>
Xml属性:
<div
class=
"codetitle"><span style=
"CURSOR: pointer"><u>复制代码</u></span> 代码如下:</div><div id=
"code72894"
class=
"codebody">
android:duration:运行动画的时间
android:repeatCount:定义动画重复的时间
</div>
代码:
<div
class=
"codetitle"><span style=
"CURSOR: pointer"><u>复制代码</u></span> 代码如下:</div><div id=
"code12415"
class=
"codebody">
public
class MainActivity
extends Activity {
ImageView image;
Button start;
Button cancel;
@Override
public
void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
image = (ImageView) findViewById(R.id.main_img);
start = (Button) findViewById(R.id.main_start);
cancel = (Button) findViewById(R.id.main_cancel);
/** 设置位移动画 向右位移150 */
final TranslateAnimation animation =
new TranslateAnimation(0, 150,0, 0);
animation.setDuration(2000);
//设置动画持续时间
animation.setRepeatCount(2);
//设置重复次数
animation.setRepeatMode(Animation.REVERSE);
//设置反方向执行
start.setOnClickListener(
new OnClickListener() {
public
void onClick(View arg0) {
image.setAnimation(animation);
/** 开始动画 */
animation.startNow();
}
});
cancel.setOnClickListener(
new OnClickListener() {
public
void onClick(View v) {
/** 结束动画 */
animation.cancel();
}
});
}
} </div><div
class=
"codebody"> </div><div
class=
"codebody"> </div><div
class=
"codebody"> </div><div
class=
"codebody"> </div>
[javascript]
view plain
copy
print
?
<pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code">本节讲解AlphaAnimation 动画,窗口的动画效果,淡入淡出什么的,有些游戏的欢迎动画,logo的淡入淡出效果就使用AlphaAnimation。
直接看代码:
复制代码 代码如下:
public
class MainActivity
extends Activity {
ImageView image;
Button start;
Button cancel;
@Override
public
void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
image = (ImageView) findViewById(R.id.main_img);
start = (Button) findViewById(R.id.main_start);
cancel = (Button) findViewById(R.id.main_cancel);
/** 设置透明度渐变动画 */
final AlphaAnimation animation =
new AlphaAnimation(1, 0);
animation.setDuration(2000);
//设置动画持续时间
/** 常用方法 */
//animation.setRepeatCount(int repeatCount);//设置重复次数
//animation.setFillAfter(boolean);//动画执行完后是否停留在执行完的状态
//animation.setStartOffset(long startOffset);//执行前的等待时间
start.setOnClickListener(
new OnClickListener() {
public
void onClick(View arg0) {
image.setAnimation(animation);
/** 开始动画 */
animation.startNow();
}
});
cancel.setOnClickListener(
new OnClickListener() {
public
void onClick(View v) {
/** 结束动画 */
animation.cancel();
}
});
}
}</pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><pre code_snippet_id=
"94243" snippet_file_name=
"blog_20131203_1_5890611"
class=
"java" name=
"code"> </pre><br>
<pre></pre>
<p></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<pre></pre>
Android 动画之ScaleAnimation应用详解
标签:
原文地址:http://www.cnblogs.com/wangfeng520/p/5006964.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
关闭苹果IOS app自动更新
2021-07-29
开发一个即时通讯App
2021-07-28
iOS 跳转App Store进行评分
2021-07-26
诺基亚短信生成!太好玩了
2021-07-26
【Azure 应用服务】App Service 配置 Application Settings 访问Storage Account得到 could not be resolved: '*.file.core.windows.net'的报错。没有解析成对应中国区 Storage Account地址 *.file.core.chinacloudapi.cn
2021-07-26
Android系统编程入门系列之界面Activity响应丝滑的传统动画
2021-07-26
uniapp h5,app两端复制文本
2021-07-22
uni-app滚动视图容器(scroll-view)之监听上拉事件
2021-07-21
新型横向移动工具原理分析、代码分析、优缺点以及检测方案
2021-07-19
Android系统编程入门系列之界面Activity交互响应
2021-07-19
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!