I need to implement an activity to show some list of items when user swipes to the next page of the notification in Android Wear.How is it possible ?
Now we can add the buttons on the added pages of notification.Please help me.
I need to implement an activity to show some list of items when user swipes to the next page of the notification in Android Wear.How is it possible ?
Now we can add the buttons on the added pages of notification.Please help me.
you need to call setDisplayIntent
, providing the PendingIntent
of the Activity you want to start, to the WearableExtender
. E.g.
wearableExtender.setDisplayIntent(activityPendingIntent);
wearableExtender.setCustomSizePreset(Notification.WearableExtender.SIZE_FULL_SCREEN);
the second line is needed to show the Activity full screen