中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Android Animation之TranslateAnimation的示例分析

發布時間:2021-08-11 10:19:08 來源:億速云 閱讀:147 作者:小新 欄目:移動開發

這篇文章主要為大家展示了“Android Animation之TranslateAnimation的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Android Animation之TranslateAnimation的示例分析”這篇文章吧。

TranslateAnimation(平移動畫)的意思無非就是一張圖片或其他從一個位置到達另外一個位置。直接代碼分析,相關重要屬性參數解釋都在代碼中。

1、首先編寫main.xml文件。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" 
  android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin" 
  android:paddingRight="@dimen/activity_horizontal_margin" 
  android:paddingTop="@dimen/activity_vertical_margin" 
  android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"> 

  <ImageView 
    android:id="@+id/image" 
    android:text="@string/hello_world" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/car_one1"/> 

</RelativeLayout>

2、接下來編寫MainActivity.java文件。

package com.example.dell.bitmapproject; 

import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 
import android.view.View; 
import android.view.animation.Animation; 
import android.view.animation.AnimationSet; 
import android.view.animation.TranslateAnimation; 
import android.widget.ImageView; 

public class MainActivity extends AppCompatActivity { 
  private ImageView image; 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
    image =(ImageView)findViewById(R.id.image); 
    image.setOnClickListener(new OnClickListenerImpl()); 
  } 
  private class OnClickListenerImpl implements View.OnClickListener { 
    @Override 
    public void onClick(View v) { 
      /* 
        AnimationSet相當于一個動畫的集合,true表示使用Animation的interpolator 
        false則是使用自己的。 
        Interpolator 被用來修飾動畫效果,定義動畫的變化率,可以使存在的動畫效果 
        accelerated(加速),decelerated(減速),repeated(重復),bounced(彈跳)等。 
       */ 

      AnimationSet animationSet = new AnimationSet(true); 
      /* 
          Animation還有幾個方法 
          setFillAfter(boolean fillAfter) 
          如果fillAfter的值為真的話,動畫結束后,控件停留在執行后的狀態 
          setFillBefore(boolean fillBefore) 
          如果fillBefore的值為真的話,動畫結束后,控件停留在動畫開始的狀態 
          setStartOffset(long startOffset) 
          設置動畫控件執行動畫之前等待的時間 
          setRepeatCount(int repeatCount) 
          設置動畫重復執行的次數 
       */ 
      TranslateAnimation translateAnimation = new TranslateAnimation( 
          //X軸初始位置 
          Animation.RELATIVE_TO_SELF, 0.0f, 
          //X軸移動的結束位置 
          Animation.RELATIVE_TO_SELF,0.5f, 
          //y軸開始位置 
          Animation.RELATIVE_TO_SELF,0.0f, 
          //y軸移動后的結束位置 
          Animation.RELATIVE_TO_SELF,1.5f); 

      //3秒完成動畫 
      translateAnimation.setDuration(2000); 
      //如果fillAfter的值為真的話,動畫結束后,控件停留在執行后的狀態 
      animationSet.setFillAfter(true); 
      //將AlphaAnimation這個已經設置好的動畫添加到 AnimationSet中 
      animationSet.addAnimation(translateAnimation); 
      //啟動動畫 
      MainActivity.this.image.startAnimation(animationSet); 

    } 
  } 
}

以上是“Android Animation之TranslateAnimation的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

紫金县| 富蕴县| 罗田县| 军事| 天祝| 蒙城县| 义乌市| 铜川市| 上林县| 宁波市| 徐水县| 阿瓦提县| 临澧县| 本溪| 化州市| 平凉市| 邹平县| 龙口市| 当雄县| 古丈县| 靖远县| 樟树市| 建始县| 黄冈市| 沂南县| 珲春市| 安丘市| 双峰县| 玛纳斯县| 志丹县| 银川市| 东乡| 忻州市| 尼勒克县| 玉树县| 青岛市| 肥西县| 抚松县| 曲水县| 吉安市| 拉孜县|