[android-developers] Re: Two things holding up my app. Any suggestions?

2012-06-22 Thread String
On Wednesday, June 20, 2012 5:06:24 PM UTC+2, Shino wrote: For my second issue... Accessing an AsyncTask from a Notification's PendingIntent ... Could I put a BroadcastReceiver in the AsyncTask then send a broadcast on user interaction with the dialog? That was the next option I was going

[android-developers] Re: Two things holding up my app. Any suggestions?

2012-06-22 Thread Shino
Thanks String for the info. This is all pretty new to me and though I have been in development for a long time, I'm still learning Android best practices. I'm going to try the Broadcast and see if that works with the AsyncTask. If it doesn't, I will turn the AsyncTask into a Service and try

[android-developers] Re: Two things holding up my app. Any suggestions?

2012-06-21 Thread Shino
Bump? Can anyone help me out with this? I'm working on using MediaPlayer, but I need to get this out. It just seems like the 2 things I'm asking about shouldn't be complicated to do but they are, and here and on StackOverflow, I have yet to get answers that work. :( On Wednesday, June 20,

[android-developers] Re: Two things holding up my app. Any suggestions?

2012-06-20 Thread Chris Stratton
On Jun 20, 10:32 am, Saurav to.saurav.mukher...@gmail.com wrote: Have you tried starting the media player in an activity, and overriding the on Back Button pressed function? Handling all the functions in the Activity Life Cycle? I am sure there is a way to keep it running programming it in

[android-developers] Re: Two things holding up my app. Any suggestions?

2012-06-20 Thread Shino
@Sauray ... I did not think of that. I guess my question would be... since after the player is launched they are now actually outside of my app, do I even have control over the back button at that point? @Chris Stratton ... It's looking like I will have to build my own... which is fine. Part