问题标签 [android-wear-notification]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - Android Wear 2.0 通知
因此,在 Google I/O 2016 和新的 Wear 2.0 之后,我试图在我的 huawei watch running beta build 上存档相同的通知。
这里谷歌通知更改文档
我尝试从以前使用通知的方式更新,但没有运气。我只是无法在通知底部添加操作按钮。
到目前为止,我得到了什么:
但我只看到没有任何按钮等的正常通知。有人知道我做错了什么吗?
android - 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 recommended here: https://developer.android.com/training/wearables/notifications/creating.html#Deliver
As you can see, I use two different images, one dark and one light for the check-mark and the decline-image. That's because I'd like to have a dark image in the rather light notification area of my Marshmallow test-device and a light image in the rather dark background of the wearable action buttons.
The problem here is that the wearable doesn't display the icon at all. See the following screenshot of my hardware wearable running Android 6.0.1:
In reality, there is no black corner. That seems to be a mistake of the screenshot tool of Android Wear. However, I'd like to display the icon on the action button. As all drawables in the project, the done_white/_black and clear_white/black are vector-drawables. I already tried with PNGs as drawables but they didn't work either.
android - 向 Android 可穿戴设备发送消息
我想向两个不同的 Android 智能手表发送消息。在移动端Wearable.MessageApi.sendMessage
被调用并且sendMessageResult.getStatus().isSuccess()
是真的,所以消息的发送应该工作。现在的问题是,该onMessageReceived
方法MyWearableListenerService
从不接收消息。我究竟做错了什么?这是我正在使用的代码:
Android 应用程序的 MainActivity。
左/右方法正在发送消息
MyWearableListenerService
穿戴端的 AndroidManifest
android - 只有来自我的移动应用程序的通知不会出现在手表 Android 磨损中
我正在使用 LG Watch Urban。我已成功将手表与手机连接,手表显示来自 gmail、linkedin 和其他应用程序的所有通知。我写了一个移动应用程序来发送通知。但是这个通知并没有出现在手表上,而是通知出现在手机中。我不知道这是什么原因。我用下面的代码,
我验证了 Companion Android wear 应用程序在被阻止的应用程序列表中没有我的移动应用程序。任何帮助将不胜感激。
android - 如何启动安卓穿戴服务应用程序?
如您所知,通过移动应用安装穿戴应用后,手表屏幕上会出现一条通知,显示:
已安装应用程序。轻触开始。
但如果应用程序是服务应用程序,它不会通过触摸通知来启动。那么如何启动呢?
android - 谷歌示例 android-SynchronizedNotifications 不起作用
Google 示例 android-SynchronizedNotifications 不起作用,因为它无法连接到 Google API 客户端。如何解决?
我下载了https://github.com/googlesamples/android-SynchronizedNotifications/并在 Android Studio 的模拟器中运行应用程序。此示例在 GoogleApiClient.Builder 中使用 Wearable.API,但失败并出现错误:
从调试中我得到了一个原因:
API_UNAVAILABLE: connectionResult = {ConnectionResult@4465} "ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}"
我的设置的详细信息:
操作系统 - MAC X El Capitan
Java - jdk1.8.0_102
项目使用 API 23 (marshmallow) 编译,并安装了 Google API、Google Play 服务、Google 存储库、Android 支持存储库
模拟器 - 来自 Android Studio、API 23、Nexus 5
我没有为 Google API 使用任何凭据,例如用于 Google Play Android 开发人员 API 或 API 密钥的 OAuth 2.0,因为我找不到在 GoogleApiClient.Builder 中使用 Wearable.API 需要使用任何类型凭据的任何信息。
android - 通知中的 Android Wear Intent 未触发
我正在编写一个小型 Android Wear 应用程序,它的部分功能是创建一个包含两个操作的持续通知: 1. 再次打开应用程序。2.关闭(清除状态)应用程序。
第一个动作(打开)完美运行(即:我按下按钮,执行动作)。但是第二个动作不会触发任何东西。
这是通知本身的代码:
注意:我尝试以另一种方式实例化 tnsIntent,Intent tnsIntent = new Intent(ACTION_TERMINATE_TRACKING, null, this, TimerNotificationService.class);
但它没有改变任何东西。
该服务如下所示:
我在调试模式下运行应用程序并在onHandleIntent()
服务中放置了一个断点,但我没有命中断点,所以服务甚至没有收到意图。我是否错过了一些我应该在某处为服务做的意图注册电话?(在清单中?)
xamarin.android - Xamarin Android Wear:获取当前点击的通知 ID
我尝试使用PutExtra和GetIntExtra,但通知 id 总是被最后一个通知覆盖,所有通知值都是相同的。请告诉我如何解决它,
提前致谢!