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

Android Wear: Activity in DisplayIntent of Notification Page gets always recreated

I'm developing some kind of media controls for my android wear. The scenario is the following: The WearableListenerService in the wear app is notified when the media data changes, i.e. artist/title. An ongoing notification is shown which has a full…
1
vote
0 answers

How to set firebase notification on WearOs From Mobile

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
vote
0 answers

Notification on Galaxy Watch (tizen) does not display icon

I have simple application that sends notifications, which I want to show on Samsung Watch (Active 2). The notification itself is shown on watch, but I cannot get Icon to be displayed. Here is example of notification from gmail and from my app. On…
1
vote
0 answers

samsung wear watch notification issue

Im trying to show notification on wear watch anything is goes correct but My Remote input choice are not visible on samsung watch it will show only title and Body my input choice are not visible on it. It appears on my phone, but it doesn't appear…
1
vote
0 answers

Wear OS Heart Rate tracker

I want to write a program for Wear OS that records the heart rate daily every 30 minute and store this data in txt file. I tried to use Job Scheduler but it isn't working constantly. In fact it works only once. Which service or API do I have to use…
1
vote
1 answer

Custom notification/Vibration - Firebase - wear OS - Android 8.0.0. API 26

What I have: a stand alone app on Wear OS (Android 8+), API 26 and within Firebase. What I would achieve (first): I would to show a custom notification with custom vibration pattern. What I would achieve (second): When my app is in background I…
DoctorWho
  • 1,044
  • 11
  • 34
1
vote
0 answers

setContentIntent() doesn't work on Wear 2.0 notifications

When using setContentIntent() to add a default action to a notification, the action shows on old versions of Android Wear, but not on the 2.0 update. The action shows as "Open in phone" on the old versions, but no action appears at all on the new…
1
vote
0 answers

Android Wear Bluetooth turning on/off using coding

Is it possible turn on and off Bluetooth by coding in Android Wear? I couldn't find anything online. It's possible in Android mobile apps, but I want to know whether the same is possible with android watches.
1
vote
2 answers

How to remove actions from wearable notification

I have a notification with couple of actions. I want to show it on wear, but without any action. How to do that? builder.extend(new NotificationCompat.WearableExtender().addAction(null)); // Crashes builder.extend(new…
Pitel
  • 5,334
  • 7
  • 45
  • 72
1
vote
1 answer

Showing notification in Android wear

private void notification() { NotificationManagerCompat manager = NotificationManagerCompat.from(getApplication()); NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplication()); builder.setAutoCancel(false); …
1
vote
0 answers

Google example android-SynchronizedNotifications does not work

Google example android-SynchronizedNotifications does not work because it could not connect to Google API Client. How to fix it? I downloaded https://github.com/googlesamples/android-SynchronizedNotifications/ and ran application in emulator in…
1
vote
1 answer

Android wear 2.0 notifications

So, after the Google I/O 2016, and the new wear 2.0, i am trying to archive the same notification on my huawei watch running beta build. Here google notification changes doc I tried, to update from my previous way i was using notifications, but…
Wladislaw
  • 1,200
  • 2
  • 12
  • 23
1
vote
1 answer

Notification limitation on android wear

On the wear device I see that it can only display 12 Notifications per app. E.g., when I get around 20 new emails, the wear app only shows the recent 12 emails and not more than that. Similarly, I wrote a wear app which throws notifications and even…
1
vote
0 answers

Android Wear custom notification layout when minimized

I've been trying for a while to replicate some of the demo notifications from the Android Wear app with custom layouts, but there is one thing I can't get working: showing the custom layout when the notification is minimized. I'm using the…
Sloy
  • 2,975
  • 3
  • 20
  • 21
1
vote
1 answer

Show notification only on phone (not on Android Wear)

Is there any way to prevent a notification be shown on Android Wear device? I know it's possible by using setOngoing(true) but I don't want my notification to be ongoing.