hello,
 i am developing application,i am using CountDownTimer .

new CountDownTimer(a, 1000) {

                    public void onTick(long millisUntilFinished) {
                        edt5.setText("left: " + millisUntilFinished /
1000);
                    }

                    public void onFinish() {
                        edt5.setText("done!");
                    }
                 }.start();


where a is the variable calculated dynamincally.but it is not
accepting dynamic values......
can anyone help me...?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to