Notice
Recent Posts
Recent Comments
Link
목록안드로이드/Service (2)
설.현.아빠
[개발 Tip] 서비스 사용예제 (음악재생)
package com.example; import android.app.Service; import android.content.Intent; import android.media.MediaPlayer; import android.os.IBinder; import android.util.Log; import android.widget.Toast; // http://marakana.com/forums/android/examples/60.html public class MyService extends Service { private static final String TAG = "MyService"; MediaPlayer player; @Override public IBinder onBind(Intent i..
안드로이드/Service
2011. 2. 11. 11:06