android字体闪烁动画,使用线程和Timer实现
public class ActivityMain extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); spark(); } private int clo = 0; public void spark() { final TextView touchScreen = (TextView) findViewById(R.id.TextView01);// 获取页面textview对象 Timer timer = new Timer(); TimerTask taskcc = new TimerTask(){ public void run() { runOnUiThread(new Runnable() { public void run() { if (clo == 0) { clo = 1; touchScreen.setTextColor(Color.TRANSPARENT); // 透明 } else { if (clo == 1) { clo = 2; touchScreen.setTextColor(Color.RED); } else { clo = 0; touchScreen.setTextColor(Color.GREEN); } } } }); } }; timer.schedule(taskcc, 1, 300); // 参数分别是delay(多长时间后执行),duration(执行间隔) } }
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索spark
, textview
, spark streaming问题
, 选择spark
, timer
, public
, savedinstancestate
, void
, 多线程动画
, textview动画
, 字体闪烁
, setTextColor
闪烁字体
c timer 多线程、timertask是新线程吗、timertask 线程、timer是多线程吗、java timer 线程,以便于您获取更多的相关知识。