[android-developers] Re: static context access

2010-02-15 Thread laphroaig15
Didn't eat my wheaties this morning. I can simply pass in the reference during the construction of the handler. Mark, thanks for the feedback. I agree that broadcasting through an excepted context is a little dicey, but it seems to work for now. I can't think of a better alternative

[android-developers] Re: static context access

2010-02-15 Thread Bob Kerns
I presume you're setting this up in the Application, right? Indeed, passing in the application at that point is just what I was about to suggest. Actually, I see nothing at all wrong with doing this. Just post it to the main thread's Handler, and do everything except interception there. Just