0

AndroidでタイマーとsheduleAtFixedRateメソッドを使用してクロノメーターを作成しようとしていますが、タイマーのrunメソッド内でテキストビューを呼び出すとアプリケーションが停止するようです。私は何を間違っていますか?ここに私のコードがあります:

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);
        }
    });
}
4

3 に答える 3

0

実行可能でインターフェース制御を操作するため。

参照コード:

private Handler handler = new Handler( );

private Runnable runnable = new Runnable( ) {
 public void run ( )
 {
 atextview.setText(String.valueOf(a));
 handler.postDelayed(this,1000); //if continue Timer,use this sentence.
 }
 };
 handler.postDelayed(runnable,1000); // begin Timer
 handler.removeCallbacks(runnable); //stop Timer 
于 2012-11-23T06:11:46.523 に答える
0

UIオブジェクトを変更またはタッチするすべてのアクションは、スレッドUIで実行する必要があります。試す:

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++;
                    ActivityCronometro.this.runOnUiThread(new Runnable() {          
                    @Override
                    public void run() {
                        texto_cronometro.setText(String.valueOf(a));

                    }
                });

                }
            }, 100, 100);
        }
    });
}
于 2012-11-22T21:23:37.750 に答える
0

UI スレッドの外部でユーザー インターフェイスを更新しようとしています。

これに置き換えtexto_cronometro.setText(String.valueOf(a));ます:

<youractivityname>.this.runOnUiThread(new Runnable() {

    public void run() {
        texto_cronometro.setText(String.valueOf(a));
    }
});
于 2012-11-22T21:24:09.730 に答える