1
我有一張圖像,我想從不透明變爲半透明。將圖像從不透明變爲半透明(並保持半透明狀態)
佈局:
<ImageView
android:id="@+id/swipeImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerInside"
android:src="@drawable/one_finger_swipe" />
活動:
ImageView swipeImage = (ImageView) toReturn.findViewById(R.id.swipeImage);
Animation animation = AnimationUtils.loadAnimation(this, R.anim.fadeout);
swipeImage.startAnimation(animation);
RES /動畫/ fadeout.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="true"
android:interpolator="@android:anim/accelerate_interpolator">
<alpha android:fromAlpha="1.0"
android:toAlpha="0.0"
android:duration="2000"/>
</set>
正如我所說的,我主要是通過看Animation Resources實現它,我大部分都是這樣做的,因爲圖像確實褪色。但是,動畫完成後,返回到不透明狀態。我如何讓它保持半透明?