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中:
mTouchView = (ImageView) findViewById(R.id.touchview);
AlphaAnimation mAlphaAnimation = new AlphaAnimation(0.1f, 1.0f); ////創(chuàng)建一個AlphaAnimation對象,參數(shù)從透明到不透明
mAlphaAnimation.setDuration(1000);// 設(shè)定動畫時間
mAlphaAnimation.setRepeatCount(Animation.INFINITE);//定義動畫重復(fù)時間
mAlphaAnimation.setRepeatMode(Animation.REVERSE);//通過設(shè)置重復(fù)時間定義動畫的行為
mTouchView.setAnimation(mAlphaAnimation);
mAlphaAnimation.start();