Я зіткнувся з поведінкою в управлінні процесами Android у поєднанні з сервісами переднього плану, що мене дійсно бентежить.
Що для мене розумно
- Коли ви проведіть пальцем із програми "Останні додатки", ОС має закінчити процес додатків у найближчому майбутньому.
- Коли ви проведіть пальцем із програми "Останні додатки", виконуючи службу переднього плану, додаток залишається живим.
- Якщо ви зупините послугу переднього плану перед тим, як перетягнути додаток із "Останні програми", ви отримаєте те саме, що і для 1).
Що мене бентежить
Якщо ви зупините службу переднього плану, не маючи жодної активності на передньому плані (додаток НЕ відображається в "Останні програми"), я б очікував, що додаток буде вбито зараз.
Однак цього не відбувається, процес додавання ще живий.
Приклад
Я створив мінімальний приклад, який показує таку поведінку.
Служба переднього плану:
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)
}
}
Транслятор прийому припиняє послугу:
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>
Спробуйте наступними способами:
- Запустіть додаток, зупиніть службу переднього плану, видаліть додаток із "Останні програми"
- Запустіть додаток, видаліть додаток із "Останні програми", зупиніть службу переднього плану
У програмі LogCat Android Studio ви бачите, що для програми додаток позначено [DEAD] для випадку 1, а не для випадку 2.
Оскільки відтворити це досить просто, це може бути цілеспрямована поведінка, але я не знайшов реальних згадок про це в документах.
Хтось знає, що тут відбувається?
onDestroy
(Служба) телефонує, але процес залишається живим довгий час, коли все пройде. Навіть якщо ОС підтримує процес живим, якщо служба перезапускається, я не бачу, чому вона не робить те саме, коли ви зупиняєте службу спочатку, а потім видаляйте додаток із залишків. Показана поведінка здається досить неінтуїтивною, особливо з огляду на останні зміни лімітів фонового виконання, тому було б непогано знати, як забезпечити припинення процесу