In handheld devices, custom notifications can be displayed using RemoteViews. RemoteViews allows the developer to fully customise the notification.
What is the way to do the same for Android Wear? Which class should be used to override the default notification UI with my own customised one?
To create a rich Notification for Android Wear, you have to use
NotificationCompat.Builderfrom support-v4.This version gives you a better control of the notification layout on Wear with methods such as
.setActionButton()or.setStyle().You can even more customize your notification with a
NotificationCompat.WearableExtender.Learn more at Creating a Notification