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
1 answer

Android Wear: Resume previous activity state from notification

I have an Android Wear app that contains an activity with a timer and a view rendered accordingly. When a user swipes right on the activity to get back to the Context Stream a notification appears showing that the App is still counting. However the…
User24231
  • 506
  • 1
  • 7
  • 20
1
vote
1 answer

Is DataApi Reliable and Practically Real Time? Extremely Delayed

I have had an Android Wear app on the market for about 10 months now and it's stopped working (Not sure when it stopped working). I'm trying to update my wearable application with some statistics that I record in my mobile app. As I say, this used…
1
vote
1 answer

Unable to open notification from wearable emulator to phone

MobileActivity.java import android.app.Activity; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import…
1
vote
0 answers

How to install Android Wear Companion App on Android Phone Emulator

I'm developing an android app which can push notifications to android wear device (watch in this case). I've no phone running Android 4.0.3 or above and 've no watch either. All I want to do is develop an app on emulator which can push notifications…
1
vote
0 answers

Android Wear Stacking Notifications maximum

I am implementing Stacking Notifications as documented. But I found that no matter how many Notifications I add to the same group, only the first 12 notifications are shown on the wear (I am using LG Urbane) and the other ignored. I did not found…
1
vote
0 answers

Big Android Wear Notifications

I am looking into making a small Android Wear app. Everything is fine so far. However, screen usage is essential for my application. I am using a notification (setDisplayIntent) that hosts a custom activity. Compared to other apps, such as Google's…
Aeefire
  • 888
  • 10
  • 25
1
vote
1 answer

Detect if app is made for Android Wear programmatically

I want to detect all apps having Android Wear support. How to detect whether the installed app on device is for Android Wear or not. AFAIK, there aren't any flags in PackageInfo or ApplicationInfo that indicates that app supports Android Wear. There…
1
vote
0 answers

Displaying a confirmation screen from notification action on Android Wear

I'm trying to display a confirmation screen on Android Wear after an action has been selected. The action has been added using the WearableExtender as outlined in this article. There seems to be a setConfirmLabel(CharSequence label) method inside…
powerobot
  • 11
  • 2
1
vote
1 answer

android wear phone call

I have 2 questions Can we make phone calls programatically from Android wear app? I have created a custom notifcation on Android wear app. Is it possible to open the mobile dialer app, when user tap on the action on custom notification? Any help…
Karthi Ponnusamy
  • 2,031
  • 2
  • 25
  • 41
1
vote
1 answer

How to add an icon on a peeking custom android wearable notification?

Our custom notification only shows title (or content text if title is missing) when it's peeking. Trying to set the icon on the root notification has no effect. If I set the icon on the extender notification it shows, but the peeking notification is…
Timo
  • 3,335
  • 30
  • 25
1
vote
0 answers

Contextual custom card cannot dismiss - android wear

Android wear app for Custom notification.By a button click it will notify.But its just showing only a black screen inside card frame,also can't dismiss by left to right swipe.Do i need to add any additional codes to make the card dismissal. …
Anees
  • 514
  • 5
  • 20
1
vote
1 answer

How to lauch the app in mobile while a button clicked in wear watch?

i am new in developing android wear applications. I would like to know how to do an action in mobile device by receiving a button click in android wear watch? For example a button in wear application to start activity in mobile device.
1
vote
1 answer

What's the right way to get Android Wear to refresh a media notification?

I have an app that plays music; I have a Broadcast Receiver that properly handles the commands from Android wear like KEYCODE_MEDIA_PLAY, KEYCODE_MEDIA_PAUSE, and KEYCODE_MEDIA_NEXT. Everything works, but there's one issue: when I hit Play on the…
1
vote
1 answer

Custom UI for Android Wear Notifications

Hii I want to create Custom UI for android wear notification, and not AW app. Please suggest if there are any libraries or anything available for this.
1
vote
1 answer

NotificationListenerService Wearable

I am trying to implement a way to detect the notifications that are sent to the android wearable devices. After googling around, I have found it is not possible to use notificationListenerService on the wearable. In current implementation, I have…