این کلاس سرویس من:
public class GPSService extends Service {
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
MediaPlayer player = MediaPlayer.create(getApplicationContext(), R.raw.music);
player.setLooping(false);
player.start();
Toast.makeText(getApplicationContext(), "موزیک در حال پخش", Toast.LENGTH_LONG).show();
return super.onStartCommand(intent, flags, startId);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
}
اینحوری هم استارتش کردم
Intent intent = new Intent(getApplicationContext(), GPSService.class);
startService(intent);
<service
android:process=":somenamehere"
android:enabled="true"
android:name=".service.GPSService" >
</service>
برچسب:
نویسنده: کاوه محمدزادگان