最近的应用程序列表在从 flutter 中的通知打开时显示两个应用程序

问题描述 投票:0回答:1

我正在 Flutter 中创建一个应用程序。最近几天我遇到了一些问题。 我使用 AlarmService 创建通知。单击生成的通知时,它会打开应用程序。

通过后退按钮关闭应用程序,不要将其从最近使用的应用程序列表中删除。现在我从应用程序图标打开该应用程序。最近的应用程序历史记录显示给应用程序。

我也在做这个解决方案,但它对我不起作用。 android:launchMode =“singleTop”

activity
            android:name=".MainActivity"
            android:exported="true"
            android:launchMode="singleTop"
            android:taskAffinity=""
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:enableOnBackInvokedCallback="true"
            android:windowSoftInputMode="adjustResize">

enter image description here

android flutter dart notifications
1个回答
0
投票

我引用这个答案。看看是否适合解决您的案例:

你能试试这个吗?

如果您只想在最近任务列表中显示一项任务,那么 您需要在其他标签上设置以下内容 清单:

android:excludeFromRecents="true"

© www.soinside.com 2019 - 2024. All rights reserved.