diff options
| author | Luan Nguyen <luann@google.com> | 2015-04-21 15:35:41 +0000 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2015-04-21 15:35:41 +0000 |
| commit | 886e8e1137fa7acad558c297891e61c20b43b036 (patch) | |
| tree | dc38edb583683a6eddc660604ae9c5c7d182efcd /docs/html/training | |
| parent | 148187255ecaaaf6a35920f779fa6a171433ccd4 (diff) | |
| parent | 2fdd83a97a0dd3de36264928ff42dcc0a098018f (diff) | |
| download | frameworks_base-886e8e1137fa7acad558c297891e61c20b43b036.zip frameworks_base-886e8e1137fa7acad558c297891e61c20b43b036.tar.gz frameworks_base-886e8e1137fa7acad558c297891e61c20b43b036.tar.bz2 | |
am 2fdd83a9: am d2545775: am 4c20df0b: am 4aebbfbb: Merge "docs: Add Channel API summary for Wear." into lmp-docs
* commit '2fdd83a97a0dd3de36264928ff42dcc0a098018f':
docs: Add Channel API summary for Wear.
Diffstat (limited to 'docs/html/training')
| -rw-r--r-- | docs/html/training/wearables/data-layer/index.jd | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/html/training/wearables/data-layer/index.jd b/docs/html/training/wearables/data-layer/index.jd index 85b2c33..b49ea4d 100644 --- a/docs/html/training/wearables/data-layer/index.jd +++ b/docs/html/training/wearables/data-layer/index.jd @@ -58,6 +58,30 @@ the data layer:</p> <a href="{@docRoot}reference/com/google/android/gms/wearable/WearableListenerService.html"><code>WearableListenerService</code></a> lets you listen for changes only when the user is actively using your app. </dd> + + <dt><b>Channel</b></dt> + <dd> + You can use the + <a href="{@docRoot}reference/com/google/android/gms/wearable/ChannelApi.html"><code>ChannelApi</code></a> + class to transfer large data items, such as music and movie files, from a handheld to a wearable + device. The Channel API for data transfer has the following benefits: + <ul> + <li>Transfer large data files between two or more connected devices, without + the automatic synchronization provided when using + <a href="{@docRoot}reference/com/google/android/gms/wearable/Asset.html"><code>Asset</code></a> + objects attached to + <a href="{@docRoot}reference/com/google/android/gms/wearable/DataItem.html"><code>DataItem</code></a> + objects. The Channel API saves disk space unlike the + <a href="{@docRoot}reference/com/google/android/gms/wearable/DataApi.html"><code>DataApi</code></a> + class, which creates a copy of the assets on the local device before synchronizing with + connected devices.</li> + <li>Reliably send a file that is too large in size to send using the + <a href="{@docRoot}reference/com/google/android/gms/wearable/MessageApi.html"><code>MessageApi</code></a> + class.</li> + <li>Transfer streamed data, such as music pulled from a network server or voice + data from the microphone.</li> + </ul> + </dd> </dl> <p class="warning"><b>Warning:</b> |
