Android-サービスにstartForegroundを実装していますか?


124

したがって、サービスをフォアグラウンドで実行するためにこのメソッドをどこにどのように実装するかわかりません。現在、私は別のアクティビティで次のようにサービスを開始しています:

Intent i = new Intent(context, myService.class); 
context.startService(i);

そして、myServicesのonCreate()で、startForeground()を試します...?

Notification notification = new Notification();
startForeground(1, notification);

ええ、私は少し迷っていて、これを実装する方法がわかりません。


まあ、これは機能しません。少なくとも私のサービスがバックグラウンドサービスとして機能し、強制終了されていることがわかる限りは。
JDS

スレッドがにリンクされている:stackoverflow.com/questions/10962418/...
Snicolas

回答:


131

まず、を完全に入力することから始めNotificationます。以下は、の使用を示すサンプルプロジェクトですstartForeground()


8
通知なしでstartForeground()を使用することは可能ですか?または、後で同じ通知を更新できますか?
JRC

2
あなたが使用した特別な理由はあります1337か?
コーディ

33
@DoctorOreo:デバイス内で一意である必要はありませんが、アプリ内で一意である必要があります。1337を選択したのは、それが1337だからです。:-)
CommonsWare

@JRCの質問は良い質問です。通知なしでstartForeground()を使用することは可能ですか?
Snicolas

2
@Snicolas:Androidの欠陥を指摘していただきありがとうございます。私はこれを修正することに取り組みます。
CommonsWare

78

メインアクティビティから、次のコードでサービスを開始します。

Intent i = new Intent(context, MyService.class); 
context.startService(i);

次に、サービスでonCreate()通知を作成し、次のようにフォアグラウンドとして設定します。

Intent notificationIntent = new Intent(this, MainActivity.class);

PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
                notificationIntent, 0);

Notification notification = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.app_icon)
                .setContentTitle("My Awesome App")
                .setContentText("Doing some work...")
                .setContentIntent(pendingIntent).build();

startForeground(1337, notification);

@mike MainActivityからこの通知を更新する方法?
Roon13 '15

1
@ Roon13はIDを使用して、この場合は1337 ...新しい通知を作成し、IDを指定してstartForegroundを呼び出すことができるはずです
mikebertiean

Roon13 @この質問をチェックしてくださいstackoverflow.com/questions/5528288/...
mikebertiean

@mikebertiean MainActivityからstartForegroundを呼び出すにはどうすればよいですか?また、プロセスの終了時にMainActvityからの通知をどのようにクリアできますか?
Roon13

@mikebertiean Serviceクラスでもう一度startForegroundを呼び出さなければならないことがわかりましたが、どうすればよいですか?startService()をもう一度呼び出す必要がありますか?
Roon13

30

これは、サービスをフォアグラウンドに設定するためのコードです。

private void runAsForeground(){
    Intent notificationIntent = new Intent(this, RecorderMainActivity.class);
    PendingIntent pendingIntent=PendingIntent.getActivity(this, 0,
            notificationIntent, Intent.FLAG_ACTIVITY_NEW_TASK);

    Notification notification=new NotificationCompat.Builder(this)
                                .setSmallIcon(R.drawable.ic_launcher)
                                .setContentText(getString(R.string.isRecording))
                                .setContentIntent(pendingIntent).build();

    startForeground(NOTIFICATION_ID, notification);

}

PendingIntentを使用して通知を作成し、通知からメインアクティビティを開始できるようにする必要があります。

通知を削除するには、stopForeground(true);を呼び出します。

onStartCommand()で呼び出されます。https://github.com/bearstand/greyparrot/blob/master/src/com/xiong/richard/greyparrot/Mp3Recorder.javaで私のコードを参照してください


stopForeground(true)を呼び出す通知を削除すると、startforegroundサービスがキャンセルされます
sdelvalle57

6
このメソッドはどこから呼び出しますか?
Srujan Barai 2015

7
Intent.FLAG_ACTIVITY_NEW_TASKのコンテキストでは無効ですPendingIntent
ミクセル2015

30

Oreo 8.1のソリューション

Androidの最新バージョンではチャンネルIDが無効なため、RemoteServiceExceptionなどの問題が発生しました。これは私がそれを解決した方法です:

活動

override fun onCreate(savedInstanceState: Bundle?) {
    val intent = Intent(this, BackgroundService::class.java)

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        startForegroundService(intent)
    } else {
        startService(intent)
    }
}

BackgroundService:

override fun onCreate() {
    super.onCreate()
    startForeground()
}

private fun startForeground() {

    val service = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
    val channelId =
            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
                createNotificationChannel()
            } else {
                // If earlier version channel ID is not used
                // https://developer.android.com/reference/android/support/v4/app/NotificationCompat.Builder.html#NotificationCompat.Builder(android.content.Context)
                ""
            }

    val notificationBuilder = NotificationCompat.Builder(this, channelId )
    val notification = notificationBuilder.setOngoing(true)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setPriority(PRIORITY_MIN)
            .setCategory(Notification.CATEGORY_SERVICE)
            .build()
    startForeground(101, notification)
}


@RequiresApi(Build.VERSION_CODES.O)
private fun createNotificationChannel(): String{
    val channelId = "my_service"
    val channelName = "My Background Service"
    val chan = NotificationChannel(channelId,
            channelName, NotificationManager.IMPORTANCE_HIGH)
    chan.lightColor = Color.BLUE
    chan.importance = NotificationManager.IMPORTANCE_NONE
    chan.lockscreenVisibility = Notification.VISIBILITY_PRIVATE
    val service = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
    service.createNotificationChannel(chan)
    return channelId
}

JAVA相当

public class YourService extends Service {

    // Constants
    private static final int ID_SERVICE = 101;

    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        super.onStartCommand(intent, flags, startId);
        return START_STICKY;
    }

    @Override
    public void onCreate() {
        super.onCreate();

        // do stuff like register for BroadcastReceiver, etc.

        // Create the Foreground Service
        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        String channelId = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O ? createNotificationChannel(notificationManager) : "";
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, channelId);
        Notification notification = notificationBuilder.setOngoing(true)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setPriority(PRIORITY_MIN)
                .setCategory(NotificationCompat.CATEGORY_SERVICE)
                .build();

        startForeground(ID_SERVICE, notification);
    }

    @RequiresApi(Build.VERSION_CODES.O)
    private String createNotificationChannel(NotificationManager notificationManager){
        String channelId = "my_service_channelid";
        String channelName = "My Foreground Service";
        NotificationChannel channel = new NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_HIGH);
        // omitted the LED color
        channel.setImportance(NotificationManager.IMPORTANCE_NONE);
        channel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
        notificationManager.createNotificationChannel(channel);
        return channelId;
    }
}

8
あなたContextCompat.startForegroundService(Context,Intent)は正しいことをするあなたの活動で使用することができます。(developer.android.com/reference/android/support/v4/content/...
サイモンフェザー

3
おそらく、最小APIが21未満の場合は、.setCategory(NotificationCompat.CATEGORY_SERVICE)代わりに使用することをお勧めしますNotification.CATEGORY_SERVICE
Someone Somewhere

6
対象とするアプリBuild.VERSION_CODES.P(APIレベル28)以降は、Manifest.permission.FOREGROUND_SERVICE使用するために許可を要求する必要があることに注意してくださいstartForeground()
Vadim Kotov

21

RAWA回答に加えて、このコードの平和:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    startForegroundService(intent)
} else {
    startService(intent)
}

次のように変更できます。

ContextCompat.startForegroundService(context, yourIntent);

このメソッドの内部を見ると、このメソッドがすべてのチェック作業を実行していることがわかります。


9

IntentServiceをフォアグラウンドサービスにしたい場合

次に、onHandleIntent()このようにオーバーライドする必要があります

Override
protected void onHandleIntent(@Nullable Intent intent) {


    startForeground(FOREGROUND_ID,getNotification());     //<-- Makes Foreground

   // Do something

    stopForeground(true);                                // <-- Makes it again a normal Service                         

}

通知方法は?

シンプル。ここにgetNotification()メソッドがあります

public Notification getNotification()
{

    Intent intent = new Intent(this, SecondActivity.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this,0,intent,0);


    NotificationCompat.Builder foregroundNotification = new NotificationCompat.Builder(this);
    foregroundNotification.setOngoing(true);

    foregroundNotification.setContentTitle("MY Foreground Notification")
            .setContentText("This is the first foreground notification Peace")
            .setSmallIcon(android.R.drawable.ic_btn_speak_now)
            .setContentIntent(pendingIntent);


    return foregroundNotification.build();
}

より深い理解

サービスがフォアグラウンドサービスになるとどうなるか

これが起こります

ここに画像の説明を入力してください

フォアグラウンドサービスとは何ですか?

フォアグラウンドサービス

  • 通知を提供することにより、ユーザーが何かがバックグラウンドで起こっていることを積極的に認識していることを確認します。

  • (最も重要なこと)メモリ不足になったときにシステムによって強制終了されない

フォアグラウンドサービスの使用例

音楽アプリに曲のダウンロード機能を実装する


5

onCreate()に「OS> = Build.VERSION_CODES.O」のコードサービスクラスを追加します

@Override
public void onCreate(){
    super.onCreate();

     .................................
     .................................

    //For creating the Foreground Service
    NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    String channelId = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O ? getNotificationChannel(notificationManager) : "";
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, channelId);
    Notification notification = notificationBuilder.setOngoing(true)
            .setSmallIcon(R.mipmap.ic_launcher)
           // .setPriority(PRIORITY_MIN)
            .setCategory(NotificationCompat.CATEGORY_SERVICE)
            .build();

    startForeground(110, notification);
}



@RequiresApi(Build.VERSION_CODES.O)
private String getNotificationChannel(NotificationManager notificationManager){
    String channelId = "channelid";
    String channelName = getResources().getString(R.string.app_name);
    NotificationChannel channel = new NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_HIGH);
    channel.setImportance(NotificationManager.IMPORTANCE_NONE);
    channel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
    notificationManager.createNotificationChannel(channel);
    return channelId;
}

この権限をマニフェストファイルに追加します。

 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

1

サービスのstartCommandの意図を利用して扱います。

 stopForeground(true)

この呼び出しにより、サービスがフォアグラウンド状態から削除され、より多くのメモリが必要な場合にサービスを強制終了できます。 これはサービスの実行を停止しません。そのためには、stopSelf()または関連するメソッドを呼び出す必要があります。

通知を削除するかどうかを示す値trueまたはfalseを渡します。

val ACTION_STOP_SERVICE = "stop_service"
val NOTIFICATION_ID_SERVICE = 1
...  
override fun onStartCommand(intent: Intent, flags: Int, startId: Int): Int {
    super.onStartCommand(intent, flags, startId)
    if (ACTION_STOP_SERVICE == intent.action) {
        stopForeground(true)
        stopSelf()
    } else {
        //Start your task

        //Send forground notification that a service will run in background.
        sendServiceNotification(this)
    }
    return Service.START_NOT_STICKY
}

on destroyがstopSelf()によって呼び出されたときにタスクを処理します。

override fun onDestroy() {
    super.onDestroy()
    //Stop whatever you started
}

サービスをフォアグラウンドで実行し続けるための通知を作成します。

//This is from Util class so as not to cloud your service
fun sendServiceNotification(myService: Service) {
    val notificationTitle = "Service running"
    val notificationContent = "<My app> is using <service name> "
    val actionButtonText = "Stop"
    //Check android version and create channel for Android O and above
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        //You can do this on your own
        //createNotificationChannel(CHANNEL_ID_SERVICE)
    }
    //Build notification
    val notificationBuilder = NotificationCompat.Builder(applicationContext, CHANNEL_ID_SERVICE)
    notificationBuilder.setAutoCancel(true)
            .setDefaults(NotificationCompat.DEFAULT_ALL)
            .setWhen(System.currentTimeMillis())
            .setSmallIcon(R.drawable.ic_location)
            .setContentTitle(notificationTitle)
            .setContentText(notificationContent)
            .setVibrate(null)
    //Add stop button on notification
    val pStopSelf = createStopButtonIntent(myService)
    notificationBuilder.addAction(R.drawable.ic_location, actionButtonText, pStopSelf)
    //Build notification
    val notificationManagerCompact = NotificationManagerCompat.from(applicationContext)
    notificationManagerCompact.notify(NOTIFICATION_ID_SERVICE, notificationBuilder.build())
    val notification = notificationBuilder.build()
    //Start notification in foreground to let user know which service is running.
    myService.startForeground(NOTIFICATION_ID_SERVICE, notification)
    //Send notification
    notificationManagerCompact.notify(NOTIFICATION_ID_SERVICE, notification)
}

ユーザーが必要なときにサービスを停止するには、通知に停止ボタンを付けます。

/**
 * Function to create stop button intent to stop the service.
 */
private fun createStopButtonIntent(myService: Service): PendingIntent? {
    val stopSelf = Intent(applicationContext, MyService::class.java)
    stopSelf.action = ACTION_STOP_SERVICE
    return PendingIntent.getService(myService, 0,
            stopSelf, PendingIntent.FLAG_CANCEL_CURRENT)
}

1

注:アプリがAPIレベル26以上をターゲットにしている場合、アプリ自体がフォアグラウンドにない限り、システムはバックグラウンドサービスの使用または作成に制限を課します。

アプリがフォアグラウンドサービスを作成する必要がある場合、アプリはを呼び出す必要がありますstartForegroundService()このメソッドはバックグラウンドサービスを作成しますが、このメソッドは、サービスが自分自身をフォアグラウンドに昇格させることをシステムに通知します。

サービスが作成されたら、サービスはそのサービスを呼び出す必要があります startForeground() method within five seconds.


1
私はあなたが現在の質問について話していることを望みます。それ以外の場合、Stackoverflowコミュニティにはそのようなルールはありません
Farid

本番環境の環境コードで@RogerGusmaoがプロジェクトを保存するとは限りません。その上-私の回答の下と上にコードを含む多くの優れた例があります。startForegroundServiceメソッドについて知らなかったため、リリース中に私のプロジェクトに問題がありました
Andrii Kovalchuk

0

私の場合、オレオでサービスを開始する活動がなかったので、まったく異なりました。

以下は、このフォアグラウンドサービスの問題を解決するために使用した手順です。

public class SocketService extends Service {
    private String TAG = this.getClass().getSimpleName();

    @Override
    public void onCreate() {
        Log.d(TAG, "Inside onCreate() API");
        if (Build.VERSION.SDK_INT >= 26) {
            NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this);
            mBuilder.setSmallIcon(R.drawable.ic_launcher);
            mBuilder.setContentTitle("Notification Alert, Click Me!");
            mBuilder.setContentText("Hi, This is Android Notification Detail!");
            NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

            // notificationID allows you to update the notification later on.
            mNotificationManager.notify(100, mBuilder.build());
            startForeground(100, mBuilder.mNotification);
        }
        Toast.makeText(getApplicationContext(), "inside onCreate()", Toast.LENGTH_LONG).show();
    }


    @Override
    public int onStartCommand(Intent resultIntent, int resultCode, int startId) {
        Log.d(TAG, "inside onStartCommand() API");

        return startId;
    }


    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.d(TAG, "inside onDestroy() API");

    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }
}

その後、このサービスを開始するために、cmdの下でトリガーしました-


adb -s "+ serial_id +" shell am startforegroundservice -n com.test.socket.sample / .SocketService


したがって、これは私がOreoデバイス上でアクティビティなしでサービスを開始するのに役立ちます


0

@mikebertieanソリューションでほとんど問題は解決しましたが、私はこの問題に追加のひねりを加えました-ジンジャーブレッドシステムを使用しており、通知を実行するためだけに追加のパッケージを追加したくありませんでした。最後に私は見つけました:https : //android.googlesource.com/platform/frameworks/support.git+/f9fd97499795cd47473f0344e00db9c9837eea36/v4/gingerbread/android/support/v4/app/NotificationCompatGingerbread.java

それから私は追加の問題にぶつかります-通知は実行時にアプリを強制終了するだけです(この問題を解決する方法Android:通知をクリックしたときにonCreate()が呼び出されるのを回避する方法)。 / Xamarin):

Intent notificationIntent = new Intent(this, typeof(MainActivity));
// make the changes to manifest as well
notificationIntent.SetFlags(ActivityFlags.ClearTop | ActivityFlags.SingleTop);
PendingIntent pendingIntent = PendingIntent.GetActivity(this, 0, notificationIntent, 0);
Notification notification = new Notification(Resource.Drawable.Icon, "Starting service");
notification.SetLatestEventInfo(this, "MyApp", "Monitoring...", pendingIntent);
StartForeground(1337, notification);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.