Questions tagged [android-wear-notification]

When an Android handheld device and Android Wear are connected, the handheld device will automatically share notifications with the Android Wear device.

When an Android handheld device and Android Wear are connected via Bluetooth, the handheld device will automatically share notifications with the Android Wear device.

Documentation

106 questions
54
votes
2 answers

Android Wear notification prevent blinking icon when updating

I can't seem to be able to create an Android Wear notification that updates with out blinking the app icon whereas the same code works fine on an Android phone. Most referenced solutions talk about updating the same notification, use…
LearnDriver
  • 571
  • 3
  • 6
38
votes
2 answers

Android: Grouped notifications and summary still shown separately on 4.4 and below

I want to implement stacked notifications on Android Wear To do that I create 1 summary notification and N individual notifications for each "item". I want only the summary to be shown on the phone. Here's my code: private void showNotifications()…
12
votes
2 answers

Is there any method to use to check whether Android Wear is worn or not?

Is there any generic mechanism to check whether the paired Android Wear is worn (and within range)? The criteria for worn could be one or more of the following: - Wear within range of Phone (connected). - Has a pulse (if device has that…
hirro
  • 671
  • 10
  • 17
7
votes
1 answer

What's the max size of a BigTextStyle notification

I have a messaging app integrated with Android Wear. Similar to Hangouts, when selecting a notification in an Android Wear Smartwatch, you can swipe to the second card which displays the conversation corresponding to the selected message. I…
mbarrben
  • 372
  • 3
  • 9
6
votes
0 answers

Failed to get FIS auth token in wear_os_emulator

Integrating firebase notification in wear_os and android emulator as well, notification working fine in the android emulator but got this error while running in wear_os emulator.
6
votes
1 answer

how to minimize cards on android wear?

I have successfully created a sample card on android wear by referring following tutorial https://developer.android.com/training/wearables/ui/cards.html But my sample card doesn't minimize on down swipe. This is the output I'm getting I want…
san
  • 490
  • 3
  • 8
6
votes
2 answers

How to get the music player buttons on Android wear like google play music

I have created a notification with normal and expanded view having player controls identical to google play. However, i dont see the notification with play controls on the android wear. I have tried to build notification with actionButtons rather…
Ramesh
  • 1,361
  • 1
  • 11
  • 19
5
votes
0 answers

Can Android Wearable apps detect the power button as a KeyEvent?

Can Android Wearable apps detect the power button as a KeyEvent or by other means? I would like to run a listener service to detect the wearable power button. I tried this but no log corresponding to a KeyEvent occurred. @Override public boolean…
Jack Shultz
  • 2,031
  • 2
  • 30
  • 53
3
votes
1 answer

Android wear app got rejected due to Bridging notification

I recently published an Android Wear app that was rejected. I got the following message from Google Play Developers: The issue is with your bridge notifications, as this notification is not enhanced. The notification simply contains text but does…
3
votes
1 answer

Notification Not Appearing On Watch

I'm creating the following notification in my app: int notificationId = 001; NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this) .setSmallIcon(R.mipmap.icon) …
3
votes
1 answer

Notification Action Icon not displayed on Wearable

I'm trying to add an action to a notification and display the action buttons even on a wearable device. The following code shows how I create an action and add it to a NotificationCompat which will be delivered using the NotificationManagerCompat as…
user3105453
  • 1,881
  • 5
  • 32
  • 55
3
votes
1 answer

Updating MediaBrowserService to MediaBrowserServiceCompat removes 'browse' function

I've been busy updating the universal Android Mediaplayer to use the Compat libraries to get it working on Android versions lower than lollipop. This was a process of replacing most classes by the compat variants of them. You can see the commit…
3
votes
1 answer

Create a background service in android wear

I have been trying to create an alarm application for my watch for past few days. And unable to find any clue that how we can create a background service for android wear. Even I didn't find anything in the developer guide for android wear. But, I…
3
votes
1 answer

Is it possible to programmatically run navigation on Android Wear?

I am making an extension for my android app. I can get the notification to android wear without a problem with all the data I want. I have lat and long for every POI for which im sending a notification, and i want to add a feature "Navigate to"…
Simec2404
  • 47
  • 8
2
votes
0 answers

Android open wear-os app from mobile app notification

I've an application for Android mobile and wear-os with same package name as companion app. When their is notification came on Mobile for my App and Mobile is not in use then notification received on watch and I want to open watch app from this…
1
2 3 4 5 6 7 8