mirror of
https://github.com/MetaCubeX/ClashMetaForAndroid.git
synced 2025-04-04 06:13:34 +03:00
feat(design): implement real-time update for exclude from recents setting
- Add OnChangedListener to excludeFromRecents setting item - Update exclude from recents status for all app tasks when setting changes - Use ActivityManager to access and modify app tasks
This commit is contained in:
parent
135cdf78d6
commit
e18adfc030
1 changed files with 10 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
package com.github.kr328.clash.design
|
||||
|
||||
import android.app.ActivityManager
|
||||
import android.content.Context
|
||||
import android.view.View
|
||||
import com.github.kr328.clash.design.databinding.DesignSettingsCommonBinding
|
||||
|
@ -70,7 +71,15 @@ class AppSettingsDesign(
|
|||
icon = R.drawable.eye_off,
|
||||
title = R.string.exclude_from_recents,
|
||||
summary = R.string.exclude_from_recents_summary,
|
||||
)
|
||||
) {
|
||||
listener = OnChangedListener {
|
||||
(context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager).let { manager ->
|
||||
manager.appTasks.forEach { task ->
|
||||
task?.setExcludeFromRecents(uiStore.excludeFromRecents)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
category(R.string.service)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue