diff options
author | Luan Nguyen <luann@google.com> | 2014-11-07 00:17:02 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-11-07 00:17:02 +0000 |
commit | df8daa8c133100910a56a79298d75e7950503bf3 (patch) | |
tree | cdec5a6cfb363f6de4b94881a3f34a5fc8873d6e /docs/html/training/wearables/data-layer | |
parent | 0171ad2bffa6daca994d3087c0577ace229adc99 (diff) | |
parent | db21261339f37666a23b5d1e7f8997af4439c0c2 (diff) | |
download | frameworks_base-df8daa8c133100910a56a79298d75e7950503bf3.zip frameworks_base-df8daa8c133100910a56a79298d75e7950503bf3.tar.gz frameworks_base-df8daa8c133100910a56a79298d75e7950503bf3.tar.bz2 |
am db212613: am 816b93cf: am 712c7ea3: Merge "cherrypick from klp-modular-docs docs: make fixes to Wear training material Change-Id: I27c2c754a027f7202a6388a60008ad3a594132c4" into lmp-docs
* commit 'db21261339f37666a23b5d1e7f8997af4439c0c2':
cherrypick from klp-modular-docs docs: make fixes to Wear training material Change-Id: I27c2c754a027f7202a6388a60008ad3a594132c4
Diffstat (limited to 'docs/html/training/wearables/data-layer')
5 files changed, 10 insertions, 12 deletions
diff --git a/docs/html/training/wearables/data-layer/accessing.jd b/docs/html/training/wearables/data-layer/accessing.jd index bffd4c8..b7ecf5b 100644 --- a/docs/html/training/wearables/data-layer/accessing.jd +++ b/docs/html/training/wearables/data-layer/accessing.jd @@ -12,9 +12,9 @@ page.title=Accessing the Wearable Data Layer <h2>Dependencies and Prerequisites</h2> <ol> - <li><a href="{@docRoot}training/wearables/apps/environment.html">Creating - Wearable Apps > Setting up Your Environment</a></li> - <li><a href="{@docRoot}training/wearables/apps/creating.html">Creating + <li><a href="{@docRoot}training/wearables/apps/creating.html#SetupEmulator">Creating + Wearable Apps > Set Up an Android Wear Emulator or Device</a></li> + <li><a href="{@docRoot}training/wearables/apps/creating.html#CreateProject">Creating Wearable Apps > Creating a Project</a></li> </ol> </div> diff --git a/docs/html/training/wearables/data-layer/data-items.jd b/docs/html/training/wearables/data-layer/data-items.jd index 63c32ea..f843bb6 100644 --- a/docs/html/training/wearables/data-layer/data-items.jd +++ b/docs/html/training/wearables/data-layer/data-items.jd @@ -47,14 +47,14 @@ directly. Instead, you: <p> However, instead of working with raw bytes using <a href="{@docRoot}reference/com/google/android/gms/wearable/PutDataRequest.html#setData(byte[])">setData()</a>, -we recommend you <a href="#data-map">use a data map</a>, which exposes +we recommend you <a href="#SyncData">use a data map</a>, which exposes a data item in an easy-to-use {@link android.os.Bundle}-like interface. </p> <h2 id="SyncData">Sync Data with a Data Map</h2> <p> -When possible, use the <a href="{@docRoot}reference/com/google/android/gms/wearable/DataMap.html"><code>DataMap</code></a> class, -which lets you work with data items in the form of an Android {@link android.os.Bundle}, +When possible, use the <a href="{@docRoot}reference/com/google/android/gms/wearable/DataMap.html"><code>DataMap</code></a> class. +This approach lets you work with data items in the form of an Android {@link android.os.Bundle}, so object serialization and de-serialization is done for you, and you can manipulate data with key-value pairs. </p> @@ -120,5 +120,5 @@ public void onDataChanged(DataEventBuffer dataEvents) { <p> This is just a snippet that requires more implementation details. Learn about how to implement a full listener service or activity in -<a href="{@docRoot}training/wearables/data-layer/events.html">Listening for Data Layer Events</a>. +<a href="{@docRoot}training/wearables/data-layer/events.html#Listen">Listening for Data Layer Events</a>. </p>
\ No newline at end of file diff --git a/docs/html/training/wearables/data-layer/events.jd b/docs/html/training/wearables/data-layer/events.jd index 9e8acbc..9196a2c 100644 --- a/docs/html/training/wearables/data-layer/events.jd +++ b/docs/html/training/wearables/data-layer/events.jd @@ -159,7 +159,7 @@ public class DataLayerListenerService extends WearableListenerService { } // Loop through the events and send a message - / to the node that created the data item. + // to the node that created the data item. for (DataEvent event : events) { Uri uri = event.getDataItem().getUri(); diff --git a/docs/html/training/wearables/data-layer/index.jd b/docs/html/training/wearables/data-layer/index.jd index 6ef3fc7..73d9ee5 100644 --- a/docs/html/training/wearables/data-layer/index.jd +++ b/docs/html/training/wearables/data-layer/index.jd @@ -83,5 +83,3 @@ channel. <dt><a href="{@docRoot}training/wearables/data-layer/events.html">Handling Data Layer Events</a></dt> <dd>Be notified of changes and events to the data layer.</dd> </dl> - -</div>
\ No newline at end of file diff --git a/docs/html/training/wearables/data-layer/messages.jd b/docs/html/training/wearables/data-layer/messages.jd index 71f1bb1..b3afacb 100644 --- a/docs/html/training/wearables/data-layer/messages.jd +++ b/docs/html/training/wearables/data-layer/messages.jd @@ -27,7 +27,7 @@ Messages are a one-way communication mechanism that's good for remote procedure such as sending a message to the wearable to start an activity. You can also use messages in request/response model where one side of the connection sends a message, does some work, -sends back a response message.</p> +and sends back a response message.</p> <h2 id="SendMessage">Send a Message</h2> @@ -95,5 +95,5 @@ public void onMessageReceived(MessageEvent messageEvent) { <p> This is just a snippet that requires more implementation details. Learn about how to implement a full listener service or activity in -<a href="{@docRoot}training/wearables/data-layer/events.html">Listening for Data Layer Events</a>. +<a href="{@docRoot}training/wearables/data-layer/events.html#Listen">Listening for Data Layer Events</a>. </p>
\ No newline at end of file |