Начать работу в Android

Я хочу вызвать службу при запуске определенного действия. Итак, здесь класс Service:

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. Я уже отлаживался и не генерируется исключение.

Любая идея?

Ответ 1

Вероятно, у вас нет службы в вашем манифесте или у нее нет <intent-filter>, который соответствует вашему действию. Изучение LogCat (через adb logcat, DDMS или перспективы DDMS в Eclipse) должно вызвать некоторые предупреждения, которые могут помочь.

Скорее всего, вы должны запустить сервис через:

startService(new Intent(this, UpdaterServiceManager.class));

Ответ 2

startService(new Intent(this, MyService.class));

Просто написать эту строку было недостаточно для меня. Служба все еще не работает. Все работало только после регистрации службы в манифесте

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >

    ...

    <service
        android:name=".MyService"
        android:label="My Service" >
    </service>
</application>

Ответ 3

Код Java для запуска службы:

Запустите службу Активность:

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");
    }

}

Определите эту службу в файле манифеста проекта:

Добавьте тег ниже в файл Манифест:

<service android:enabled="true" android:name="com.my.packagename.MyService" />

Готово

Ответ 4

Мне нравится делать его более динамичным

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" />

Ответ 5

Активация: startService(new Intent(this,ChatService.class));

Манифест -

<service
   android:name=.ChatService"
   android:enabled="true"
   android:process=":ChatProcess"/>