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

Button not working Android Wear Custom Cards

I'm trying to create a custom card in android wear app (this card is created by WearableListenerService),my problem is when the card appears and my application is closed the button on the card does not work, but when the application is running the…
1
vote
2 answers

Make Android Wear notification clickable without the action icon

I am sending a notification from the watch, and I want the notification to be clickable, i.e., it opens an activity when clicked. Here is what it comes out to look like (source: macnn.com) But, I do not want the play icon to show, just want the…
1
vote
1 answer

Android Notification on Wear device. `localOnly` flag

I have a few notifications running on my app built with NotificationCompat Depending on the type, they show background bitmaps, or list of text, also most of them have 1 or 2 actions using the code: builder.addAction(R.drawable.ic_notification,…
Budius
  • 39,391
  • 16
  • 102
  • 144
1
vote
1 answer

How to remove default action(BlockApp) in android wear notification?

I am working on Android wear notification. I am able to add action. Everything works fine. But I wanted to avoid the default action(Block app) which you find it as the last action item in all android wear notification in the notification. How do I…
1
vote
0 answers

Stack notifications not working on gingerbread

Based on https://developer.android.com/training/wearables/notifications/stacks.html I built an example with 3 stacked notifications, one of them for summary. In devices with API > 14 it works just fine, but in 2.3 devices it shows all 3…
1
vote
2 answers

Wake up Android Wear from a service when in sleep mode?

I am working on Android Wear app that is somehow a timer that displays a notification when the time is elapsed and then start again. The notification displays a message on the watch and make the device vibrating. The app is working fine except when…
1
vote
3 answers

Android Wear : Custom Notifications

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…
Swayam
  • 16,294
  • 14
  • 64
  • 102
0
votes
0 answers

Sometimes I am not getting the foreground service notification on the android wear (galaxy watch 4)

We have android wear app and there is need - our app should work in the background. so for that we used foreground service to achieve this behaviour. we attached the notification with foreground service that we created, so we can identify foreground…
0
votes
0 answers

Flutter Send Notification to Smart Watch (WearOs, Apple Watch)

I want to ask if you had any Idea how to send notification to Smart watch (WearOs/Apple Watch) when the flutter app also receive notification from FCM or if it possible to send local notification to Smart Watch
0
votes
0 answers

WearOS notifications

I am creating a watch application for my watch and using FirebaseMessaging for notifications. On Galaxy watch4, when the notifications are not coming when the watch is in sleep state. As soon as I wake the watch, the full screen notification…
0
votes
0 answers

How to send notification from wear os to mobile

I need to send notification from wear os to mobile. I searched a lot for this, every where it is for mobile to wear os, but I need wear os to mobile. If anyone has some knowledge about it or suggest some links, it would be highly appreciated.
Khemraj Sharma
  • 57,232
  • 27
  • 203
  • 212
0
votes
1 answer

Android App to monitor training status of models from Google AI Platform

I am trying to build an Android App using Java and Android Studio that will monitor the training status of your models on Google Cloud AI Platform and send a notification to a Wearable when the training is done. I have been looking for APIs I can…
0
votes
1 answer

Try to send HTTP Request to API Backend via Wear OS standalone app

I really need your help please. I have the following problem: I want to send data via a android Wear watch (with integrated sim card) using a standalone Wear OS app. I want, if a button is pressed that a http request is send to my backend server…
0
votes
1 answer

Wear OS: notifications won't show

I am developing a stand alone app on Wear OS (Android 8+) and I have issues with notifications. I am running a Foreground Service, with an on-going notification. That on-going notification works very well and has no feature from the Wear OS (so the…
0
votes
1 answer

Wear OS Notification Vibration and Sound

In my foreground service I get notifications and this is working totally fine. The only problem is that my watch don't vibrate or make any sound when I get a notification. I tried setting vibration on NotificationChannel or on Notification but…
user10240524