我正在尝试使用计时器和 sheduleAtFixedRate 方法在 Android 上制作计时器,但看起来在计时器的 run 方法中调用我的 textview 会使我的应用程序停止。我做错了什么?这是我的代码:
Button boton_iniciar;
TextView texto_cronometro;
Timer count;
int a = 0;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_cronometro);
/**********************/
boton_iniciar = (Button) findViewById(R.id.button1);
texto_cronometro = (TextView) findViewById(R.id.textView1);
count= new Timer("Contador");
boton_iniciar.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// TODO Auto-generated method stub
count.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
// TODO Auto-generated method stub
a++;
texto_cronometro.setText(String.valueOf(a));
}
}, 100, 100);
}
});
}