您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要介绍“Android Studio如何实现补间动画”,在日常操作中,相信很多人在Android Studio如何实现补间动画问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”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); } }); }
到此,关于“Android Studio如何实现补间动画”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注亿速云网站,小编会继续努力为大家带来更多实用的文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。