您好,登錄后才能下訂單哦!
這篇文章主要介紹“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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。