Services in Android
A service is a component that runs in the background to perform long-running operations To perform work for remote processes. Runs in Background (No Interfaces) Eg :com.android.music.MediaPlaybackService public class BackgroundSoundService extends Service { private static final String TAG = null; MediaPlayer player; public IBinder onBind(Intent arg0) { return null; } […]