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
2
votes
0 answers

iOS Notification Icon on Android Wear

Hello guys right now I am working on an iOS app and have a android wear device paired with my iPhone when I revive an notification from my app the notification on my watch only shows the standard android wear logo instead off my app logo does anyone…
2
votes
1 answer

Wearable.DataApi.deleteDataItems is not working

I would appreciate any insight as tried everything already to make deleteDataItems working but it doesn't. I've implemented a very simple scenario with creating new data items (ArrayList) in my main app and passing it over to the wearable client…
2
votes
1 answer

How to open a Wear Activity from a Notification created by Phone

Currently when I receive a Push notification I create a notification. This notification is shown on phone and Android wear. The notification has one action: Open on phone. How can I create a second action to open an Activity on the wearable? I tried…
2
votes
0 answers

Android wear notification icon is getting replaced by handheld app launcher icon

Just playing a bit with Android Wear stuff, Is there any way of having different notification icon for Android Wear and the handheld app icon? The icon displayed in Watch is the launcher icon of handheld app. Even if I change the launcher icons in…
Bob
  • 91
  • 4
2
votes
1 answer

Android Wear: Custom Page on Notification

I'm very new to Android Wear (development). I started reading and implementing the documentation. However I'm not sure if what I want to implement is "überhaupt" possible. I can attach custom "actions" on the push notifications I receive, but it…
timr
  • 6,668
  • 7
  • 47
  • 79
2
votes
0 answers

app not showing in Android wear start menu

I am creating an app that supports both mobile and wearable. What I have done so far is: correctly included wear module in build.gradle as mentioned here added correct dependedncies and support libraries for wearables same package name and…
2
votes
1 answer

Android wearable stacked notifications

I was playing with stacked notifications but I can't make it work, the notifications don't fire at all. Here's the code: private void sendSimpleStackedNotifications() { NotificationCompat.WearableExtender wearableExtender = new…
GuilhE
  • 11,591
  • 16
  • 75
  • 116
2
votes
1 answer

Android Wear notification with auto focus like Gmap

I want to create an auto-focused notification. I have noticed that notifications have two states in Android Wear : FOCUSED, the time is invisible. When you start a navigation on Google Map, the default notification looks like this : NOT FOCUSED,…
Pierre Maoui
  • 5,976
  • 2
  • 27
  • 28
2
votes
1 answer

Wearable Notification that is updated frequently causes flicker

On a wearable my app displays a rest timer as shown in the picture. It simply counts down and is updated each second. My problem is that since it is updated each second, it creates a flickering effect. The icon is hidden for just long enough for…
zoltish
  • 2,122
  • 19
  • 37
2
votes
1 answer

Stacked Wear notification shown on phone too

I have 1 summary-notification and serveral stacked notifications. For some reason the stacked notifications are not only shown on the Andrid Wear device but also on the phone. According to the documentation Stacking Notifications they should only…
2
votes
1 answer

android wear notification with different text styles

On Add a Big View Google show how to make use of BigTextStyle. The screenshot looks very promising: So I can see a title "Emmet Connolly" which I can set with setContentTitle(). And I can see a bold header "Re: wearables" which I don't know how to…
Kuno
  • 3,492
  • 2
  • 28
  • 44
2
votes
0 answers

Changing Timeout for Receiving Voice Input

I develop an android app, that sends a notification to the connected android wear smartwatch. This notification contains the possibility to replay by voice input. The spoken message is shown on the handheld as a toast (for testing). The user has to…
2
votes
2 answers

Can a Android Wear notification page be scrollable?

We have an SMS app for Android Wear (https://play.google.com/store/apps/details?id=com.awear.coffee) Right now we use regular notification actions and when you select Reply it launches our activity on the watch. I want to replace the Reply action…
Jakob
  • 63
  • 5
2
votes
1 answer

Detecting Android Wear Notification Dismiss Events

The Android Wear OS has recently been updated to 5.0, which includes the feature to "recover" the most recently dismissed notification. As a consequence, a notification's delete intent is only triggered after the user can no longer recover the…
Denley Bihari
  • 591
  • 3
  • 8
2
votes
0 answers

Wear Notification.MediaStyle API 21 show Stop button

I am having issues with the 5.0 MediaSession controls. My app streams live music so I do not use a pause button, only a stop button. I cannot figure out how to only display a stop button on my wear device.....the stop button shows up and works…