admin管理员组文章数量:1345139
I have a MainActivity which has filters MAIN and LAUNCHER set. It is mostly a single Activity based application except for few SDK screens which open in separate Activity.
My requirement is, when an user taps the push notification, I always want the MainActivity to be shown and get the Intent data in onNewIntent callback.
So I have tried the following for the pending Intent,
Option 1, this is working as expected, except when push notification tap opens app from killed state. In this state If I put the app to background using Home button and try to open the app using the Android Launcher (Recents is working correctly), a new MainActivity is pushed on top. So the Stack becomes MainActivity -> MainActivity. I can fix this by making the launchMode to singleTop. But what if the user opens another Activity from SDK in this case and puts the app to background? MainActivity -> ChatActivity?
val intent = Intent(this, MainActivity::class.java)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_SINGLE_TOP)
Option 2, set all properties like how the Android Launcher does, this solves the problem I have mentioned above. Even singletop is not required.
val intent = Intent(this, MainActivity::class.java)
intent.setAction(Intent.ACTION_MAIN)
intent.addCategory(Intent.CATEGORY_LAUNCHER)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED)
My question, is option2 safe to use in all Android devices? Why does Android launcher push a new MainActivity if there is already a Task with the Activity, Task launched using notification pending Intent, even when both have the flag FLAG_ACTIVITY_NEW_TASK
set?
本文标签:
版权声明:本文标题:android - Clear till root Activity on push notification tap if Task exist, or create new Task place the Activity as root - Stack 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743794876a2540244.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论