Hi All, Is it possible to open an Activity when us...
# android
i
Hi All, Is it possible to open an Activity when user get notification ( I mean without click of pending Intent) ? Requirement is to show activity something like call when user intimated by push notification.
r
use implicit intent / deeplink
c
@Imran if I understand correctly, you want to show a full screen to the user for something like a "call". I had to build this once a while back. I worked on a chat app that had an option to call people. I believe we used "full screen notification". https://android.jlelse.eu/full-screen-intent-notifications-android-85ea2f5b5dc1
👌 1
i
Thanks