I want to open an xaml
page when user clicks on the Notification
. I've searched but cant find a decent sample for this situation.
By the way I'm using FCM
with old GCM
integration.How can I achieve this in android ?
相关问题
- Plugin with id 'com.google.gms.google-services
- Custom controls disabled. There was an internal is
- google-drive can't get push notifications
- How to implement only emoji keyboard for Entry?
- Error:Xamarin.Forms targets have been imported mul
相关文章
- How can I add media attachments to my push notific
- Xamarin form MessagingCenter Unsubscribe is not wo
- How to convert a FCM token to APNS token?
- The type initializer for 'SQLite.SQLiteConnect
- How to open current activity which is open while c
- Does the apple push notification distribution cert
- How posting One Signal notification's addition
- How to use native C++ libraries in Mono for Androi
When you receive a
Notification
fromFCM
, you could add aPendingIntent
inNotification
to implement this function, this will allow the user to open the app. Code like this :For more information, you could read the document and here is the complete code.