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

溫馨提示×

溫馨提示×

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

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

怎么在Android中實現屬性動畫

發布時間:2021-05-25 18:05:43 來源:億速云 閱讀:90 作者:Leah 欄目:移動開發

這期內容當中小編將會給大家帶來有關怎么在Android中實現屬性動畫,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

MainActivity.java

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

  private ImageButton imageView;
  private Button alpha_bt;
  private Button rotationY_bt;
  private Button scaleX_bt;
  private Button translationX_bt;
  private Button AnimatorSet_bt;


  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
//    對控件進行初始化
    init();

//   此處用的是xml的形式.引用在Xml里的屬性動畫資源. AnimatorInflater.loadAnimator(上下文,R.animator..)222
    Animator Xmlanimator = AnimatorInflater.loadAnimator(this, R.animator.objectanimator);
//   把要做動畫控件對象放進去.Animator.setTarget(View對象);222
    Xmlanimator.setTarget(imageView);
//   開啟動畫.Animator.start.222
    Xmlanimator.start();

  }

  // 對于控件進行初始化
  private void init() {
    //找到ImageView控件對象
    imageView = (ImageButton) findViewById(R.id.animation_iv);
    //找到Button控件對象.
    alpha_bt = (Button) findViewById(R.id.alpha_bt);
    rotationY_bt = (Button) findViewById(R.id.rotationY_bt);
    scaleX_bt = (Button) findViewById(R.id.scaleX_bt);
    translationX_bt = (Button) findViewById(R.id.translationY_bt);
    AnimatorSet_bt = (Button) findViewById(R.id.AnimatorSet_bt);
    //為button設置點擊事件
    alpha_bt.setOnClickListener(this);
    rotationY_bt.setOnClickListener(this);
    scaleX_bt.setOnClickListener(this);
    translationX_bt.setOnClickListener(this);
    AnimatorSet_bt.setOnClickListener(this);

  }

  /**
   * 根據點擊事件類型.調用控件做屬性動畫的
   *
   * @param view
   */
  @Override
  public void onClick(View view) {
    switch (view.getId()) {
      case R.id.alpha_bt:
        //做透明動畫,參數1:View,代表你要修改那個控件的屬性. 參數2:propertyName代表實現什么樣子的動畫:"alpha",String類型.
        //參數3:float... values,控件修改的參數,new float[]{0.0f, 0.2f, 0.4f, 0.6f, 0.8f, 1.0f}
        ObjectAnimator alpha = ObjectAnimator.ofFloat(imageView, "alpha", new float[]{0.0f, 0.2f, 0.4f, 0.6f, 0.8f, 1.0f});
        //設置動畫執行時長.setDuration
        alpha.setDuration(2000);
        //設置動畫執行的模式setRepeatMode,參數用ObjectAnimator引用.
        alpha.setRepeatMode(ObjectAnimator.RESTART);
        //設置動畫執行的次數.setRepeatCount
        alpha.setRepeatCount(1);
        //使用ObjectAnimator對象開啟動畫.
        alpha.start();

        break;
      case R.id.rotationY_bt:
        //做旋轉動畫,"rotationY".rotationX,rotation new float[]{90f, 180f, 270f, 360f}
        ObjectAnimator rotationY = ObjectAnimator.ofFloat(imageView, "rotationY", new float[]{90f, 180f, 270f, 360f});
        rotationY.setDuration(2000);
        rotationY.setRepeatMode(ObjectAnimator.RESTART);
        rotationY.setRepeatCount(1);
        rotationY.start();
        break;
      case R.id.scaleX_bt:
        //做縮放動畫,scaleX,scaleY new float[]{1f, 2f, 3f, 4f, 5f, 6f,1f}
        ObjectAnimator scaleX = ObjectAnimator.ofFloat(imageView, "scaleX", new float[]{1f, 2f, 3f, 4f, 5f, 6f, 1f});
        scaleX.setDuration(2000);
        scaleX.setRepeatMode(ObjectAnimator.RESTART);
        scaleX.setRepeatCount(1);
        scaleX.start();

        break;
      case R.id.translationY_bt:
        //做平移動畫,translationY,translationX new float[]{10f, 20f, 30f, 40f, 60f, 80f}
        ObjectAnimator translationY = ObjectAnimator.ofFloat(imageView, "translationY", new float[]{10f, 20f, 30f, 40f, 60f, 80f});
        translationY.setDuration(2000);
        translationY.setRepeatMode(ObjectAnimator.RESTART);
        translationY.setRepeatCount(1);
        translationY.start();

        //做動畫集合AnimatorSet,分別創建兩個動畫對象.注意playTogether(動畫對象...)和playSequentially的區別.最后開啟動畫.start
      case R.id.AnimatorSet_bt:
        AnimatorSet set = new AnimatorSet();
        ObjectAnimator oa = ObjectAnimator.ofFloat(imageView, "translationX", new float[]{10f, 20f, 30f, 40f, 60f, 80f});
        oa.setDuration(3000);
        ObjectAnimator oa2 = ObjectAnimator.ofFloat(imageView, "translationY", new float[]{-10f, -20f, -30f, -40f, -60f, -80f});
        oa2.setDuration(3000);
        set.playTogether(oa, oa2);
        set.start();
        break;
      default:
        break;
    }
  }

}

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
<!--  注意background的屬性置為null -->

  <Button
    android:id="@+id/alpha_bt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="alpha"/>

  <Button
    android:id="@+id/translationY_bt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="translationY"/>

  <Button
    android:id="@+id/scaleX_bt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="scaleX"/>

  <Button
    android:id="@+id/rotationY_bt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="rotationY"/>

  <Button
    android:id="@+id/AnimatorSet_bt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="AnimatorSet"/>

  <ImageButton
    android:onClick="yyyy"
    android:id="@+id/animation_iv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:src="@drawable/a8"
    android:background="@null"/>

</LinearLayout>


在res目錄下創建animator文件夾在文件夾里創建以下xml

objectanimator.xml

<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
  android:propertyName="rotationX"
  android:duration="3000"
  android:repeatCount="1"
  android:repeatMode="reverse"
  android:startOffset="0"
  android:valueFrom="360.0">
</objectAnimator>

<!--注意:在xml定義動畫類的屬性,浮點型小數,直接寫小數即可,不用再帶f.
提示:控件位移的參照單位在xml文件里有所不同,不過更簡單,不用再特意去定義參照物屬性了,直接是根據值,區分兩種方式:
  一種是以整個屏幕為參照物,在xml文件屬性定義值是int%p;  一種以控件自身大小為參照物,在xml文件屬性定義值是int-->

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。

上述就是小編為大家分享的怎么在Android中實現屬性動畫了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

河北区| 梅河口市| 怀柔区| 都昌县| 宁陵县| 绥阳县| 比如县| 长宁县| 邓州市| 通化县| 黑水县| 泾川县| 韶山市| 黎城县| 平果县| 云和县| 大余县| 霍山县| 无为县| 晋城| 林口县| 海门市| 通州区| 玉屏| 富锦市| 阳东县| 东方市| 长白| 金秀| 西安市| 吉林市| 九台市| 渑池县| 江孜县| 河西区| 木里| 浦江县| 五峰| 彭阳县| 托里县| 纳雍县|