Androidでサービスを開始する


115

特定のアクティビティが開始されたときにサービスを呼び出したい。だから、これが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
タイマーに注意してください-サービスがシャットダウンしてリソースを解放すると、このタイマーはサービスの再起動時に再起動されません。あなたはしている権利は、START_STICKYサービスを再起動しますが、その後、唯一のonCreateと呼ばれ、タイマーvarが再初期化されません。あなたはと遊ぶことができるSTART_REDELIVER_INTENTこの問題を解決するためにアラームサービスやAPI 21ジョブスケジューラ、。
Georg

忘れた場合は<service android:name="your.package.name.here.ServiceClass" />、アプリケーションタグ内を使用して、Androidマニフェストにサービスを登録していることを確認してください。
Japheth Ongeri-インカリメバ2016

回答:


278

おそらく、マニフェストにサービスがないか<intent-filter>、アクションに一致するサービスがありません。LogCatの調査(経由adb logcat DDMS、またはEclipseのDDMSパースペクティブ)、役立つ警告がいくつか表示されます。

多くの場合、次の方法でサービスを開始する必要があります。

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

1
どのようにデバッグできますか?サービスを呼び出したことがない、デバッグに何も表示されない
2015年

すべての場所にLog.eタグのシットンを追加します。サービスを起動する前に、サービスインテントの結果が、サービスクラス(onCreate、onDestroy、anyおよびallメソッド)の内部に移動します。
ゾーイ2017

Android sdk 26以上の私のアプリでは機能しますが、android sdk 25以下では機能しません。解決策はありますか?
Mahidul Islam 2018

@MahidulIslam:別のスタックオーバーフローの質問をすることをお勧めします。ここで、問題と症状をより詳細に説明する最小限の再現可能な例を提供できます。
CommonsWare 2018年

- :私はすでに質問をしてのこと@CommonsWare stackoverflow.com/questions/49232627/...
Mahidulイスラム教

81
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>

1
Android coderzpassion.com/implement-service-androidのサービスに関するすべてを学び、遅れて申し訳ありません
Jagjit Singh

55

開始 サービスの 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" />

できた


7
同じパッケージにアクティビティとサービスを残すと、パフォーマンスはどの程度向上しますか?これまで聞いたことがない。
OneWorld、2014年

おそらく、実行速度ではなく、非常に漠然とした緩い意味でのパフォーマンスを意味していましたか?
Anubian Noob 2015

3

もっとダイナミックにしたい

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

1
Intent serviceIntent = new Intent(this,YourActivity.class);

startService(serviceIntent);

マニフェストにサービスを追加する

<service android:enabled="true" android:name="YourActivity.class" />

オレオ以上のデバイスでサービスを実行するために地上サービスに使用し、ユーザーに通知を表示する

または、バックグラウンドリファレンスhttp://stackoverflow.com/questions/tagged/google-play-servicesの位置更新にジオフェンシングサービスを使用します

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.