88일차(2)/Android App(54) : mp3 파일 재생 예제 / Notification(2) - 새 서비스 생성 MusicService 생성 package com.example.step23mp3player; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log; public class MusicService extends Service { //서비스가 최초 활성화될 때 한번 호출되는 메소드 @Override public void onCreate() { super.onCreate(); } //최초 활성화 혹은 이미 활성화된 이후 이 서비스를 활성화 하는 I..