我怎么能让文字每秒闪烁一次?

时间:2011-11-28 12:10:47

标签: android

在我的应用程序中,我以“hh:mm a”的形式显示时间。现在我想每秒闪烁:,怎么样?

2 个答案:

答案 0 :(得分:1)

您可以使用:

 TextView myText = (TextView) findViewById(R.id.myText );

 Animation anim = new AlphaAnimation(0.0f, 1.0f);
 anim.setDuration(50); //You can manage the time of the blink with this parameter
 anim.setStartOffset(20);
 anim.setRepeatMode(Animation.REVERSE);
 anim.setRepeatCount(Animation.INFINITE);
 myTextview.startAnimation(anim);

答案 1 :(得分:0)

:放入viewFlipper内的视图中,在showNext()showPrevious() .set autoStart= trueindeterminant=true中设置闪烁效果;