我遇到了Android的流程管理中与前台服务结合在一起的行为,这确实使我感到困惑。
什么对我来说合理
- 当您从“最近使用的应用程序”中滑动应用程序时,操作系统应在不久的将来完成应用程序的处理。
- 当您在运行前台服务时从“最近的应用程序”中滑动应用程序时,该应用程序仍处于活动状态。
- 当您从“最近使用的应用程序”中滑动应用程序之前停止前台服务时,您将获得与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
(服务)被调用,但是在一切都消失之后,该过程仍然有效。即使操作系统在重新启动该服务的情况下仍使进程保持活动状态,我也看不出为什么先停止该服务然后从最近的应用程序中删除该应用程序时,它却没有做同样的事情。所显示的行为似乎不太直观,尤其是考虑到最近对后台执行限制的更改,因此很高兴知道如何确保该过程被停止