亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android Studio如何實現補間動畫

發布時間:2021-11-15 09:06:19 來源:億速云 閱讀:190 作者:iii 欄目:開發技術

這篇文章主要介紹“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如何實現補間動畫”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

英山县| 新乐市| 屯昌县| 贵溪市| 调兵山市| 邵武市| 湾仔区| 淮阳县| 辛集市| 惠来县| 开远市| 台东县| 佳木斯市| 巴东县| 遵义市| 黄平县| 扬州市| 揭东县| 红原县| 柳州市| 金堂县| 莱州市| 静安区| 武义县| 博客| 南郑县| 定结县| 连州市| 天津市| 深水埗区| 太仆寺旗| 合阳县| 乐清市| 巴马| 舒兰市| 灌云县| 综艺| 高淳县| 上蔡县| 左云县| 松江区|