[android-developers] It depends!

2009-11-24 Thread stanlick
Does Google offer formal training on Android? I have purchased all the books on the market and have written several applications, yet the one question that troubles me is are my software patterns prescribed? How many times have you posted code only to be asked why did you do it that way? Now

Re: [android-developers] It depends!

2009-11-24 Thread Mark Murphy
stanlick wrote: Does Google offer formal training on Android? Not that I am aware of. If they do, they sure keep quiet about it. I read, studied, and coded the background processing technique using the Handler callback and it seemed to work alright. Lot's of boilerplate code and switches on

Re: [android-developers] It depends!

2009-11-24 Thread Jason Proctor
d) AsynchTask at least for my application-level stuff, i've so far not found anything that can't be done pretty elegantly with AsyncTask. -- jason.vp.engineering.particle -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] It depends!

2009-11-24 Thread Dianne Hackborn
On Tue, Nov 24, 2009 at 9:51 AM, Jason Proctor jason.android.li...@gmail.com wrote: d) AsynchTask at least for my application-level stuff, i've so far not found anything that can't be done pretty elegantly with AsyncTask. If you need to have multiple things happening at the same time --

Re: [android-developers] It depends!

2009-11-24 Thread Jason Proctor
On Tue, Nov 24, 2009 at 9:51 AM, Jason Proctor mailto:jason.android.li...@gmail.comjason.android.li...@gmail.com wrote: d) AsynchTask at least for my application-level stuff, i've so far not found anything that can't be done pretty elegantly with AsyncTask. If you need to have multiple