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?
Currently there is no way to do that. EDIT: it is possible: Custom UI for Android Wear Notifications
Best option out there are:
NotificationCompat.WearableExtender
notification for both phone and Wear.setLocalOnly()
so notification will be limited to phone, and on Wear create separate one - with other look, actions etc.So only last option allows you to have custom layout but there are many drawback (as it is own app) - for example it is separate from notification list.
Hope that might change in the future.