[android-developers] TimerTask and Handler without inner class.

2013-03-25 Thread bob
Timer task does not need to be an inner class. Afaik, no one can make a class that neds to be inner. -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] TimerTask and Handler without inner class.

2013-03-23 Thread MarkG123
Got a bit of a problem. I am trying to use TimerTask and Handler to do my background work, all the examples I have seen use the TimerTask as an inner class. I need my class to be a regular class, as it's called from a couple of different classes. Is this possible? Can someone show me how?

Re: [android-developers] TimerTask and Handler without inner class.

2013-03-23 Thread TreKing
On Sat, Mar 23, 2013 at 8:03 AM, MarkG123 mark.gilles...@gmail.com wrote: Got a bit of a problem. I am trying to use TimerTask and Handler to do my background work, all the examples I have seen use the TimerTask as an inner class. I need my class to be a regular class, as it's called from a