Bir hizmet iskelet:
public class MyService extends Service {
public static final String TAG = "MyServiceTag";
...
}
Bu başlangıç aktivitesinin bir parçasıdır:
processStartService(MyService.TAG);
private void processStartService(final String tag) {
Intent intent = new Intent(getApplicationContext(), MyService.class);
intent.addCategory(tag);
startService(intent);
}
Bu durdurma faaliyetinin bir parçasıdır:
processStopService(MyService.TAG);
private void processStopService(final String tag) {
Intent intent = new Intent(getApplicationContext(), MyService.class);
intent.addCategory(tag);
stopService(intent);
}
http: // kodu. google.com/p/openmobster/wiki/AndroidService – Uttam