On Tue, Jun 14, 2011 at 7:32 AM, souissi haythem <[email protected]> wrote: > Hi, > > I have create a new timer: Timer t=new Timer(); > > than i lunch my timer: > t.schedule(new TimerTask() { > public void run() { > > } > },1000); > > how can i have the value of my timer t
You can't. There are no methods for that on Timer or TimerTask. General Java programming questions are probably better directed at StackOverflow (with the 'java' and 'android' tags). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- 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

