Запуск сервиса в Android
Я хочу вызвать службу, когда начинается определенная деятельность. Итак, вот класс обслуживания:
public class UpdaterServiceManager extends Service {
private final int UPDATE_INTERVAL = 60 * 1000;
private Timer timer = new Timer();
private static final int NOTIFICATION_EX = 1;
private NotificationManager notificationManager;
public UpdaterServiceManager() {}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
@Override
public void onCreate() {
// Code to execute when the service is first created
}
@Override
public void onDestroy() {
if (timer != null) {
timer.cancel();
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startid) {
notificationManager = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
int icon = android.R.drawable.stat_notify_sync;
CharSequence tickerText = "Hello";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
Context context = getApplicationContext();
CharSequence contentTitle = "My notification";
CharSequence contentText = "Hello World!";
Intent notificationIntent = new Intent(this, Main.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText,
contentIntent);
notificationManager.notify(NOTIFICATION_EX, notification);
Toast.makeText(this, "Started!", Toast.LENGTH_LONG);
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
// Check if there are updates here and notify if true
}
}, 0, UPDATE_INTERVAL);
return START_STICKY;
}
private void stopService() {
if (timer != null) timer.cancel();
}
}
и вот как я называю это:
Intent serviceIntent = new Intent();
serviceIntent.setAction("cidadaos.cidade.data.UpdaterServiceManager");
startService(serviceIntent);
проблема в том, что ничего не происходит. Выше блок кода вызывается в конце операции onCreate
. Я уже отлажен и никаких исключений не бросается.
есть идеи?
4 ответа:
вероятно, у вас нет службы в манифесте, или у него нет
<intent-filter>
Это соответствует вашему действию. Изучение LogCat (черезadb logcat
, DDMS или перспектива DDMS в Eclipse) должны появиться некоторые предупреждения, которые могут помочь.скорее всего, вы должны запустить службу через:
startService(new Intent(this, UpdaterServiceManager.class));
startService(new Intent(this, MyService.class));
просто написать эту строку было недостаточно для меня. Сервис по-прежнему не работал. Все работало только после регистрации сервиса в manifest
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" > ... <service android:name=".MyService" android:label="My Service" > </service> </application>
Java-код startсервис:
начать обслуживание с активность:
startService(new Intent(MyActivity.this, MyService.class));
начать обслуживание с фрагмент:
getActivity().startService(new Intent(getActivity(), MyService.class));
MyService.java:
import android.app.Service; import android.content.Intent; import android.os.Handler; import android.os.IBinder; import android.util.Log; public class MyService extends Service { private static String TAG = "MyService"; private Handler handler; private Runnable runnable; private final int runTime = 5000; @Override public void onCreate() { super.onCreate(); Log.i(TAG, "onCreate"); handler = new Handler(); runnable = new Runnable() { @Override public void run() { handler.postDelayed(runnable, runTime); } }; handler.post(runnable); } @Override public IBinder onBind(Intent intent) { return null; } @Override public void onDestroy() { if (handler != null) { handler.removeCallbacks(runnable); } super.onDestroy(); } @Override public int onStartCommand(Intent intent, int flags, int startId) { return START_STICKY; } @SuppressWarnings("deprecation") @Override public void onStart(Intent intent, int startId) { super.onStart(intent, startId); Log.i(TAG, "onStart"); } }
определите эту службу в файле манифеста проекта:
добавить ниже в теге Манифест file:
<service android:enabled="true" android:name="com.my.packagename.MyService" />
сделал
мне нравится делать его более динамичным
Class<?> serviceMonitor = MyService.class; private void startMyService() { context.startService(new Intent(context, serviceMonitor)); } private void stopMyService() { context.stopService(new Intent(context, serviceMonitor)); }
Не забудьте Манифест
<service android:enabled="true" android:name=".MyService.class" />