在我的应用程序中,我以“hh:mm a”的形式显示时间。现在我想每秒闪烁:
,怎么样?
答案 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= true
和indeterminant=true
中设置闪烁效果;