diff options
author | 2016-10-10 22:49:14 +0000 | |
---|---|---|
committer | 2016-10-10 22:49:14 +0000 | |
commit | 5e43433eebc57a83e47673decab85b38aab3d2d5 (patch) | |
tree | 2dfcfd7bd7c749c036db925c8c08385f8465c88b | |
parent | cef95861b5365fe5b420a651ec17e690ab100c1b (diff) | |
parent | ddd5867e9db2719c5543c3876d5026d112b48354 (diff) |
Docs: Remove a reference to a deprecated sample am: 3e01ab2b0e am: c48ad2580a am: e62f577153 am: b7fe96a4f6
am: ddd5867e9d
Change-Id: I4ae59b737773769f01927d8332be9e21db90e9e0
-rw-r--r-- | docs/html/training/wearables/data-layer/messages.jd | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/docs/html/training/wearables/data-layer/messages.jd b/docs/html/training/wearables/data-layer/messages.jd index ef9bfb176a5b..8c4b730c97cd 100644 --- a/docs/html/training/wearables/data-layer/messages.jd +++ b/docs/html/training/wearables/data-layer/messages.jd @@ -10,12 +10,6 @@ page.title=Sending and Receiving Messages <li><a href="#SendMessage">Send a Message</a></li> <li><a href="#ReceiveMessage">Receive a Message</a></li> </ol> -<h2>Try it out</h2> -<ul> - <li> - <a href="https://github.com/googlesamples/android-FindMyPhone/" class="external-link">FindMyPhone</a> - </li> -</ul> </div> </div> @@ -27,6 +21,7 @@ and attach the following items to the message:</p> <li>An arbitrary payload (optional)</li> <li>A path that uniquely identifies the message's action</li> </ul> + <p> Unlike with data items, there is no syncing between the handheld and wearable apps. Messages are a one-way communication mechanism that's good for remote procedure calls (RPC), @@ -149,11 +144,9 @@ If you create a service that extends <a href="{@docRoot}reference/com/google/android/gms/wearable/WearableListenerService.html"><code>WearableListenerService</code></a> to detect capability changes, you may want to override the <a href="{@docRoot}reference/com/google/android/gms/wearable/WearableListenerService.html#onConnectedNodes(java.util.List<com.google.android.gms.wearable.Node>)"><code>onConnectedNodes()</code></a> -method to listen to finer-grained connectivity details, such as when a wearable device switches -from Wi-Fi to a Bluetooth connection to the handset. For an example implementation, see the -<code>DisconnectListenerService</code> class in the -<a href="https://github.com/googlesamples/android-FindMyPhone/" class="external-link">FindMyPhone</a> -sample. For more information on how to listen for important events, see +method to listen to finer-grained connectivity details, such as when a wearable +device switches from Wi-Fi to a Bluetooth connection to the handset. +For more information on how to listen for important events, see <a href="{@docRoot}training/wearables/data-layer/events.html#Listen">Listen for Data Layer Events</a>. </p> |