猜想我对 Intent Flags 有一些误解。我想做的是,我有一个无线电流应用程序,它有两个活动(PlayerApplication 和 SettingsScreen)。我有一个 Service.class 用于在后台运行的 Streaming,它也包含一个通知(您可以在通知覆盖菜单和 PlayerApplication 中停止/开始播放)。如果用户点击通知,PlayerApplicationActivity 应该返回屏幕。
一切正常,期待这种情况:用户打开 SettingsScreenActivity -> 打开 NotificationOverlayMenu -> 点击通知 -> PendingIntent 恢复到 PlayerApplicationActivity
现在,PlayerApplicationScreen 在那里,但我不能点击任何东西。我看到,如果我从通知恢复,我的 PlayerApplication 的 onCreate() 不会被触发。但布局看起来不错(也在 onCreate() 中膨胀)
我在 Service.class 中使用了以下 PendingIntent:
PendingIntent contentIntent = PendingIntent.getActivity(
this.getApplicationContext(), //Service.class
0,
new Intent(this,PlayerApplicationActivity.class)
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
| Intent.FLAG_ACTIVITY_SINGLE_TOP),
0);
所以实际上 PendingIntent 应该将 Activity(如果已经运行)带回顶部。我是在使用错误的意图还是我错过了一点?
编辑:我在 Manifest.xml 中声明了 launchMode
android:launchMode="singleTask"