From 69fe28ea2be57dc7c1e1ea939026077a11277bbd Mon Sep 17 00:00:00 2001 From: David Friedman Date: Tue, 17 May 2016 22:55:04 -0700 Subject: [PATCH] Docs: Some typo fixes for Wear 2.0 Preview docs. Change-Id: I87d6d14c95f6350aa36ee71b99cf86b82cc0902a --- docs/html/wear/preview/features/bridger.jd | 2 +- docs/html/wear/preview/features/ime.jd | 29 ++++++++++--------- .../wear/preview/features/notifications.jd | 8 ++--- 3 files changed, 20 insertions(+), 19 deletions(-) diff --git a/docs/html/wear/preview/features/bridger.jd b/docs/html/wear/preview/features/bridger.jd index 91b1bedf7260a..05463133e8ad9 100644 --- a/docs/html/wear/preview/features/bridger.jd +++ b/docs/html/wear/preview/features/bridger.jd @@ -53,7 +53,7 @@ page.tags="wear-preview"

- To prevent bridging of notifications from a phone app, you can use a + To prevent bridging of notifications from a phone app, you can use an entry in the manifest file of the watch app (e.g. the standalone watch app), as follows:

diff --git a/docs/html/wear/preview/features/ime.jd b/docs/html/wear/preview/features/ime.jd index 7d1c431149683..1301be9afb2a7 100644 --- a/docs/html/wear/preview/features/ime.jd +++ b/docs/html/wear/preview/features/ime.jd @@ -34,12 +34,13 @@ methods for Wear.

Creating an Input Method for Wear

The Android platform provides a standard framework for creating IMEs. To create - a wear-specific IME, you need to optimize your IME for limited screen size. + a Wear-specific IME, you need to optimize your IME for limited screen size.

-

This document provides guidance that can help you create a wear-specific IME. -Before you continue with this guide, it's important that you first read the -documentation for Creating an Input Method +

This document provides guidance that can help you create a Wear-specific IME. +Before you continue with this guide, it's important that you read the +documentation for +Creating an Input Method on handsets.

@@ -49,17 +50,17 @@ If you are developing an IME for Wear, remember that the feature is supported only on Android 6.0 (API level 23) and higher versions of the platform. To ensure that your IME can only be installed on Wearables that support input -methods beyond voice, add the following to your application's manifest: +methods beyond voice, add the following to your app's manifest:
 <uses-sdk android:minSdkVersion="23" />
 
-This indicates that your application requires Android 6.0 or higher. +This indicates that your app requires Android 6.0 or higher. For more information, see API Levels and the documentation for the <uses-sdk> element.

-To control how your application is filtered from devices that do not support Wear -IMEs (for example, on Phone), add the following to your application's manifest: +To control how your app is filtered from devices that do not support Wear +IMEs (for example, on Phone), add the following to your app's manifest:

 <uses-feature android:required="true" android:name="android.hardware.type.watch" />
@@ -80,7 +81,7 @@ IMEs (for example, on Phone), add the following to your application's manifest:
 
 

General IME Considerations

-

Here are some things to consider when implementing IME for wear:

+

Here are some things to consider when implementing IME for Wear:

Expanded Notifications

-

Android Wear 2.0 introduces expanded notifications, which provides +

Android Wear 2.0 introduces expanded notifications, which provide substantial additional content and actions for each notification.

When you specify additional content pages @@ -158,7 +158,7 @@ action in the notification unless a different action is specified using

Note: {@code MessagingStyle} expanded notifications require that you have at least version 1.5.0.2861804 of the - Android Wear application + Android Wear app on your paired Android phone. That version will be available within the next few weeks in the Play Store.