package com.yarin.android.Examples_03_03;
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
public class MusicService extends Service
{
//MediaPlayer����
private MediaPlayer player;
public IBinder onBind(Intent arg0)
{
return null;
}
public void onStart(Intent intent, int startId)
{
super.onStart(intent, startId);
//����������Ϊװ�������ļ�
player = MediaPlayer.create(this, R.raw.test);
//��ʼ����
player.start();
}
public void onDestroy()
{
super.onDestroy();
//ֹͣ����-ֹͣService
player.stop();
}
}