フォアグラウンドサービスと連携したAndroidのプロセス管理の動作に遭遇しました。
私にとって合理的なもの
- 「最近のアプリ」からアプリをスワイプすると、OSは比較的近い将来にアプリのプロセスを完了するはずです。
- フォアグラウンドサービスの実行中に「最近のアプリ」からアプリをスワイプしても、アプリは有効なままです。
- 「最近のアプリ」からアプリをスワイプする前にフォアグラウンドサービスを停止すると、1)と同じになります。
私を混乱させるもの
フォアグラウンドでアクティビティがないときにフォアグラウンドサービスを停止すると(アプリが[最近のアプリ]に表示されない)、アプリが強制終了されると思います。
しかし、これは起こっていない、アプリのプロセスはまだ生きています。
例
この動作を示す最小限の例を作成しました。
ForegroundService:
import android.app.Notification
import android.app.NotificationChannel
import android.app.NotificationManager
import android.app.PendingIntent
import android.app.Service
import android.content.Context
import android.content.Intent
import android.os.Build
import android.os.IBinder
import androidx.core.app.NotificationCompat
import timber.log.Timber
class MyService : Service() {
override fun onBind(intent: Intent?): IBinder? = null
override fun onCreate() {
super.onCreate()
Timber.d("onCreate")
}
override fun onDestroy() {
super.onDestroy()
Timber.d("onDestroy")
// just to make sure the service really stops
stopForeground(true)
stopSelf()
}
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
Timber.d("onStartCommand")
startForeground(ID, serviceNotification())
return START_NOT_STICKY
}
private fun serviceNotification(): Notification {
createChannel()
val stopServiceIntent = PendingIntent.getBroadcast(
this,
0,
Intent(this, StopServiceReceiver::class.java),
PendingIntent.FLAG_UPDATE_CURRENT
)
return NotificationCompat.Builder(this, CHANNEL_ID)
.setSmallIcon(R.drawable.ic_launcher_foreground)
.setContentTitle("This is my service")
.setContentText("It runs as a foreground service.")
.addAction(0, "Stop", stopServiceIntent)
.build()
}
private fun createChannel() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val notificationManager = getSystemService(NotificationManager::class.java)
notificationManager.createNotificationChannel(
NotificationChannel(
CHANNEL_ID,
"Test channel",
NotificationManager.IMPORTANCE_DEFAULT
)
)
}
}
companion object {
private const val ID = 532207
private const val CHANNEL_ID = "test_channel"
fun newIntent(context: Context) = Intent(context, MyService::class.java)
}
}
BroadcastReceiverはサービスを停止します。
import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent
class StopServiceReceiver : BroadcastReceiver() {
override fun onReceive(context: Context, intent: Intent) {
val serviceIntent = MyService.newIntent(context)
context.stopService(serviceIntent)
}
}
アクティビティ:
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
startService(MyService.newIntent(this))
}
}
マニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.christophlutz.processlifecycletest">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MyService"/>
<receiver android:name=".StopServiceReceiver" />
</application>
</manifest>
次の方法で試してください。
- アプリを起動、フォアグラウンドサービスを停止、「最近のアプリ」からアプリを削除
- アプリを起動、「最近のアプリ」からアプリを削除、フォアグラウンドサービスを停止
Android StudioのLogCatで、アプリプロセスがケース1では[DEAD]とマークされているがケース2ではマークされていないことがわかります。
再現は非常に簡単なので、意図した動作である可能性がありますが、ドキュメントでこれについての本当の言及は見つかりませんでした。
誰かがここで何が起こっているのか知っていますか?
onDestroy
(サービス)が呼び出されますが、プロセスはすべてがなくなった後も長く存続します。サービスが再起動した場合に備えてOSがプロセスを存続させていたとしても、最初にサービスを停止してからアプリを最近のリストから削除しても同じことが行われない理由はわかりません。表示される動作は、特にバックグラウンド実行制限に対する最近の変更を考えると、直感的ではないように思われるため、プロセスを確実に停止する方法を知っておくとよいでしょう