如何区分我的onDataChanged是手持触发还是佩戴触发?
How can I distinguish whether my onDataChanged was triggered by handheld or wear?
如何区分我的数据是在我的手持设备上编辑的还是在我的穿戴设备上编辑的?
根据文档:
您可以使用 WearableListenerService 监听以下事件:
onDataChanged() - Called when data item objects are created, changed,
or deleted. An event on one side of a connection
triggers this callback on both sides.
我正在使用该服务,但想忽略这些项目,如果它们是在手持设备上编辑的,并且只想要
我最终使用了 NodeApi.getLocalNode():
https://developers.google.com/android/reference/com/google/android/gms/wearable/NodeApi
如何区分我的数据是在我的手持设备上编辑的还是在我的穿戴设备上编辑的?
根据文档:
您可以使用 WearableListenerService 监听以下事件:
onDataChanged() - Called when data item objects are created, changed,
or deleted. An event on one side of a connection
triggers this callback on both sides.
我正在使用该服务,但想忽略这些项目,如果它们是在手持设备上编辑的,并且只想要
我最终使用了 NodeApi.getLocalNode():
https://developers.google.com/android/reference/com/google/android/gms/wearable/NodeApi