我試圖淡入淡出圖像使用相同的方法作爲淡入淡出的文字,但我得到的錯誤「方法setAnimation(AlphaAnimation)未定義的類型圖像」。Android淡入圖像
我試過尋找一些 - 我不認爲我必須使用動畫偵聽器,就像在類似的問題的情況?我只是想動畫一個圖像 - 這裏的部分代碼:
private void animateNinthDoctor() {
AlphaAnimation fadeInAnimation = new AlphaAnimation(0, 1);
fadeInAnimation.setDuration(1500);
fadeInAnimation.setFillAfter(true);
mImageView1.setAnimation(fadeInAnimation);
}
給出在最後一行的「setAnimation」錯誤 - mImageView1使用
private Image mImageView1;
你可以發表如何聲明'mImageView1'請問? – Emmanuel
'private Image mImageView1;' – Sil
Check this [android animation example](http://android.codota.com/scenarios/528e1e56da0acb4b08fd250c/android.view.animation.AlphaAnimation?tag=bumblebee) – drorw