Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android 簡單圖片動畫播放實現

android 簡單圖片動畫播放實現

編輯:關於Android編程

xml中:

        <ImageView
            android:id="@+id/touchview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:src="@drawable/touch" />
java中: www.2cto.com

               mTouchView = (ImageView) findViewById(R.id.touchview);
                AlphaAnimation mAlphaAnimation = new AlphaAnimation(0.1f, 1.0f); ////創建一個AlphaAnimation對象,參數從透明到不透明

mAlphaAnimation.setDuration(1000);// 設定動畫時間
mAlphaAnimation.setRepeatCount(Animation.INFINITE);//定義動畫重復時間
mAlphaAnimation.setRepeatMode(Animation.REVERSE);//通過設置重復時間定義動畫的行為
mTouchView.setAnimation(mAlphaAnimation);
mAlphaAnimation.start();

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved