1

タイマーは一定の数に達すると停止します。代わりに、ボタンのクリックで停止したい。それ、どうやったら出来るの?これは私のコードが現在どのように見えるかです:

final TextView t1 = (TextView) findViewById(R.id.yourpay);

final Timer t =new Timer();
t.schedule(new TimerTask() {

        @Override
        public void run() {
            runOnUiThread(new Runnable() {

                    public void run() {
                        money = (PPS+Reserve);
                        Reserve = (money);
                        t1.setText("$" + money); //Place your text data here
                        counter++;

                        //Place your stopping condition over here. Its important to have a stopping condition or it will go in an infinite loop. 
                        if(counter == HPDPS)
                            t.cancel(); 
                    }
            }); 
        }
    }, 1000, 1000);

可能であれば、ボタンのクリックとカウンタが HPDPS に達したときに停止したいと思います。

4

2 に答える 2

2

ボタンのonClickListener():

if (t != null)
    t.cancel();

タイマーから停止条件を削除します。


コード例 (更新):

final TextView t1 = (TextView) findViewById(R.id.yourpay);

final Timer t =new Timer();
t.schedule(new TimerTask() {

    @Override
    public void run() {
        runOnUiThread(new Runnable() {

            public void run() {
                money = (PPS+Reserve);
                Reserve = (money);
                t1.setText("$" + money); //Place your text data here

                // Removed the stopping condition/counter

            }
        }); 
    }
}, 1000, 1000); // Do you really want to wait 1 second before executing the timer's code?  If not, change the 1st "1000" to a "0"


final Button b = (Button) findViewById(R.id.my_button_id); // Replace with your button's id
b.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        if (t != null)
            t.cancel();
        }
});
于 2012-07-30T17:59:07.057 に答える
0

CountDownTimer を使用します。ボタンをクリックすると、タイマーが停止します。

しかし、先に進んでボタンを作成するには、ボタンに OnClickListener を設定してから、 timer.cancel() またはリスナーの onClick() メソッドで内部で停止するものを呼び出します。

于 2012-07-30T17:57:31.027 に答える