SynchronizedNotifications
Wearable
com.example.android.wearable.synchronizednotifications
18
25
25
true
DEPRECATED
Wearable
Android
Java
Mobile
INTERMEDIATE
screenshots/web-icon.png
screenshots/different_notifications_phone.png
screenshots/different_notifications_wearable.png
screenshots/notification_options.png
screenshots/watch_only_notification.png
com.google.android.gms.wearable.DataApi
com.google.android.gms.wearable.Wearable
com.google.android.gms.wearable.WearableListenerService
() {
@Override
public void onResult(DataApi.DataItemResult dataItemResult) {
if (!dataItemResult.getStatus().isSuccess()) {
Log.e(TAG, "buildWatchOnlyNotification(): Failed to set the data, "
+ "status: " + dataItemResult.getStatus().getStatusCode());
}
}
});
```
[1]: http://developer.android.com/reference/com/google/android/gms/wearable/DataApi.html#putDataItem(com.google.android.gms.common.api.GoogleApiClient%2C%20com.google.android.gms.wearable.PutDataRequest)
[2]: http://developer.android.com/reference/com/google/android/gms/wearable/DataItem.html
[3]: https://developer.android.com/reference/com/google/android/gms/wearable/WearableListenerService.html
]]>