Android Studio实现补间动画
作者:G.O.Y 时间:2022-07-01 11:09:44
本文实例为大家分享了Android Studio实现补间动画的具体代码,供大家参考,具体内容如下
补间动画是给出初始位置和结束位置,中间由系统自动补充的动画
1、补间动画的配置文件:scale.xml
2、布局文件:animal_patching.xml
3、main.java
sacle.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale
android:duration="3000"(运动时间)
android:toYScale="0.5"(结束大小)
android:toXScale="0.5"
android:pivotY="50%"(运动中心位置)
android:pivotX="50%"
android:fromXScale="1"(初始大小)
android:fromYScale="1"/>
</set>
animal_patching
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:id="@+id/image"
android:background="@drawable/boy"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
main.java
package com.example.imageview;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;
public class MainActivity<i> extends AppCompatActivity {
/*
private static final String TAG = "leo";
private NotificationManager manager;
private Notification notification;
private PopupWindow popupWindow;
//创建一个数组,内部元素为Bean类型;
private List<Bean> data = new ArrayList<>();
*/
private boolean flag = true;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.cartoon_patching);
ImageView imageView = findViewById(R.id.image);
imageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//透明度***********************************
// Animation animation = AnimationUtils.loadAnimation(MainActivity.this,R.anim.alpad_1);
// imageView.startAnimation(animation);
//旋转************************************
// Animation animation = AnimationUtils.loadAnimation(MainActivity.this,R.anim.rotate);
// imageView.startAnimation(animation);
//大小缩放**********************************
// Animation animation = AnimationUtils.loadAnimation(MainActivity.this,R.anim.scale);
// imageView.startAnimation(animation);
//平移************************************
Animation animation = AnimationUtils.loadAnimation(MainActivity.this,R.anim.translate);
imageView.startAnimation(animation);
}
});
}
来源:https://blog.csdn.net/GAOK11/article/details/121307261
标签:Android,Studio,补间动画
0
投稿
猜你喜欢
深入解析:打造自动消失的对话框
2022-04-07 02:53:56
C#数据结构之双向链表(DbLinkList)实例详解
2023-08-23 08:56:44
比较有效的使用C#读取文件的代码
2022-11-07 08:43:34
java中Statement 与 PreparedStatement接口之间的关系和区别
2023-11-25 03:11:11
使用SpringBoot+EasyExcel+Vue实现excel表格的导入和导出详解
2023-07-18 18:15:14
详解Spring Cloud中Hystrix的请求合并
2022-07-06 14:53:06
java实现微信红包 拼手气红包
2023-09-28 10:31:45
java模拟TCP通信实现客户端上传文件到服务器端
2023-11-26 10:14:49
GraalVM和Spring Native尝鲜一步步让Springboot启动飞起来66ms完成启动
2023-07-19 10:34:35
MyBatis @Select注解介绍:基本用法与动态SQL拼写方式
2023-07-17 05:56:43
Android开发gradle拉取依赖的加速配置
2023-05-31 03:16:08
C# TextBox控件实现只能输入数字的方法
2022-03-07 01:57:27
OkHttp3中默认不保持Cookie的解决方法
2021-10-25 15:20:50
C#中ListView用法实例
2021-10-15 06:10:24
C#生成MD5的函数代码
2021-08-04 14:50:24
Java实现简易学生管理系统
2022-10-16 19:26:49
Android实现图片加载进度提示
2022-09-11 17:54:44
C#中英文混合字符串截取函数
2023-01-19 06:02:55
struts2框架的登录制作图文教程
2022-11-24 03:15:15
Java读取TXT文件内容的方法
2023-11-23 22:33:41