Reputation: 56
I implemented PushApps Android SDK. All is well and working, but I want to create a notification by myself without using:
PushManager.buildNotification(intent.getExtras(), context,
NOTIFICATION_ID, R.drawable.notification_icon,
notificationIntent);
specific - I want to show a custom layout using the data received in the
intent.getExtras()
Thanks!
Upvotes: 3
Views: 366
Reputation: 2168
In order to show your own custom notification, you can take control over the PushAppsMessage interface. By doing that, you can show your own custom message with special layouts and more!. Checkout this article - How To Create Android Push Notifications With Custom View?.
Upvotes: 1