steve_macleod wrote:
> Hi Dianne,
> OK Im new with this, but how do I get the initiating Intent object
> from the onStart function?

She's saying your onStart() callback should look like this:

@Override
public void onStart(Intent intent, int startId)
{
        super.onStart(intent, startId);
        player = MediaPlayer.create((Context)this, R.raw.groove_arm);
        player.start();
}

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com

Android Training on the Ranch! -- Mar 16-20, 2009
http://www.bignerdranch.com/schedule.shtml

--~--~---------~--~----~------------~-------~--~----~
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 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
-~----------~----~----~----~------~----~------~--~---

Reply via email to