android:repeatCount=”infinite”在set中無效

來源:互聯網
上載者:User

xml如下:

<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android"    android:repeatCount="infinite"    android:repeatMode="restart">      <alpha          android:fromAlpha="0.0"          android:toAlpha="1.0"          android:duration="1000"/>      <alpha        android:startOffset="3000"        android:fromAlpha="1.0"          android:toAlpha="0.0"          android:duration="1000"/></set>

本來想實現的功能是讓透明度從0 到1, 等待2秒,再讓透明度從1到0, 以達到閃爍的目的; 這樣做的好處是可以控制顯示的時間; 

有人說在代碼中設定setRepeatCount(Animation.INFINITE);就可以了, 實際測試下來還是不行,最好是通過設定AnimationListener, 在onAnimationEnd事件中再次開始動畫來完成“repeat”的。

Animation anim = AnimationUtils.loadAnimation(BuzzFinderActivity.this, R.anim.crosshair_focusing);            anim.setAnimationListener(new AnimationListener() {                @Override                public void onAnimationEnd(Animation arg0) {                    Animation anim = AnimationUtils.loadAnimation(BuzzFinderActivity.this, R.anim.crosshair_focusing);                    anim.setAnimationListener(this);                    brackets.startAnimation(anim);                }                @Override                public void onAnimationRepeat(Animation arg0) {                    // TODO Auto-generated method stub                }                @Override                public void onAnimationStart(Animation arg0) {                    // TODO Auto-generated method stub                }            });

-------------------------------------------------------------------------------------------------------------------------------------

題外話:

雖然只用alpha動畫, 設定如下也可以實現閃爍的效果,但是不太好控制顯示時間。如果想讓漸層的時間不一致就更沒轍了。

alpha.setRepeatCount(Animation.INFINITE);

alpha.setRepeatMode(Animation.REVERSE);

-------------------------------------------------------------------------------------------------------------------------------------

討論帖: http://stackoverflow.com/questions/4480652/android-animation-does-not-repeat

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.