summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk Dougherty <ddougherty@google.com>2013-05-15 13:33:06 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-05-15 13:33:06 +0000
commit8d59513030cbc61c37aec2d2a2343a9bfc03ae2d (patch)
tree83ceb69d4922696a0c32e76f1909d81a9f412621
parent6402d93ed8ff6712c0b9787188607e5a9b212602 (diff)
parentd14295cf0e7d8afed4061e12ad5349aaa8b724e0 (diff)
downloadframeworks_base-8d59513030cbc61c37aec2d2a2343a9bfc03ae2d.zip
frameworks_base-8d59513030cbc61c37aec2d2a2343a9bfc03ae2d.tar.gz
frameworks_base-8d59513030cbc61c37aec2d2a2343a9bfc03ae2d.tar.bz2
Merge "Doc change: updates to location landing." into jb-mr1.1-docs
-rw-r--r--docs/html/distribute/googleplay/publish/localizing.jd4
-rw-r--r--docs/html/google/play-services/location.jd21
-rw-r--r--docs/html/guide/topics/location/index.jd1
-rw-r--r--docs/html/guide/topics/location/strategies.jd2
-rw-r--r--docs/html/guide/topics/sensors/index.jd5
5 files changed, 24 insertions, 9 deletions
diff --git a/docs/html/distribute/googleplay/publish/localizing.jd b/docs/html/distribute/googleplay/publish/localizing.jd
index a7b4073..a7f1976 100644
--- a/docs/html/distribute/googleplay/publish/localizing.jd
+++ b/docs/html/distribute/googleplay/publish/localizing.jd
@@ -555,6 +555,10 @@ help you create high-quality marketing materials, use the drag-and-drop <a
href="{@docRoot}distribute/promote/device-art.html">Device Art Generator</a> to
quickly frame your screen shot on a Nexus device. </p>
+<h4 id="deviceart">Check your Optimization Tips</h4>
+
+<p>As you prepare for launch, make sure to sign into the Developer Console and check
+your app's Optimization Tips. The Optimization Tips let you know when you are missing parts of your localized store listing and provide other helpful reminders for a successful localized launch.</p>
<h2 id="support">Support International Users after Launch</h2>
diff --git a/docs/html/google/play-services/location.jd b/docs/html/google/play-services/location.jd
index 430aaeb..ddaa890 100644
--- a/docs/html/google/play-services/location.jd
+++ b/docs/html/google/play-services/location.jd
@@ -22,8 +22,8 @@ header.hide=1
<p>
To get started, first <a href="{@docRoot}google/play-services/setup.html">set up</a>
the Google Play services SDK. You can learn how to use the APIs in the training
- class <a href="{@docRoot}training/basics/location/index.html">Making Your App Location Aware</a>,
- and details are available in the <a href="{@docRoot}reference/com/google/android/location/package-summary.html">Location API reference</a>. To look at a code example, <a href="">download the sample app</a>.
+ class <a href="{@docRoot}training/location/index.html">Making Your App Location Aware</a>,
+ and details are available in the <a href="{@docRoot}reference/com/google/android/gms/location/package-summary.html">Location API reference</a>. <!-- To look at a code example, <a href="">download the sample app</a>. -->
</p>
</div>
</div>
@@ -35,13 +35,16 @@ header.hide=1
<h4 style="font-weight:bold">Fused location provider</h4>
+
+<p>The Fused Location Provider intelligently manages the underlying location technology and gives you the best location according to your needs. </p>
+
<ul>
<li>
<em>Simple APIs</em>: Lets you specify high-level needs like "high accuracy" or "low power", instead of
having to worry about location providers.
</li>
<li>
- <em>Always-on location</em>: Gives your apps immediate access to the best, most recent location.
+ <em>Immediately available</em>: Gives your apps immediate access to the best, most recent location.
</li>
<li>
<em>Power-efficiency</em>: Minimizes your app's use of power. Based on all incoming location requests and available sensors, fused location provider chooses the most efficient way to meet those needs.
@@ -54,6 +57,9 @@ header.hide=1
</ul>
<h4 style="font-weight:bold">Geofencing APIs</h4>
+
+<p>Lets your app setup geographic boundaries around specific locations and then receive notifications when the user enters or leaves those areas. </p>
+
<ul>
<li>
<em>Simple but powerful APIs</em>: Allows batch addition and removal of geofences. Ability to manage
@@ -69,18 +75,19 @@ header.hide=1
<div class="layout-content-col span-6">
<h4 style="font-weight:bold">Activity recognition</h4>
+
+<p>With apps becoming increasingly contextual, understanding what the user is doing is critical to surfacing the right content. The Activity recognition API makes it easy to check the user’s current activity&mdash;still, walking, cycling, and in-vehicle&mdash;with very efficient use of the battery.</p>
<ul>
<li>
- Uses low-power sensors to recognize the user's current physical activity, such as walking,
- cycling, or driving, or remaining still.
+ <em>Optimized for battery</em>: Uses low-power sensors to recognize the user's current physical activity.
</li>
<li>
- Great for adding movement awareness to location awareness. Apps can adjust the amount of
+ <em>Enhances other services with context</em>: Great for adding movement awareness to location awareness. Apps can adjust the amount of
location awareness they provide, based on the current user movement. For example, a
navigation app can request more frequent updates when the user is driving.
</li>
<li>
- Features for advanced applications: For advanced applications that want to do their own
+ <em>Features for advanced applications</em>: For advanced applications that want to do their own
post-processing, this API also makes available confidence values for each of the activities.
It also includes two activities that indicate unreliable measurements: unknown and tilt.
</li>
diff --git a/docs/html/guide/topics/location/index.jd b/docs/html/guide/topics/location/index.jd
index 083842b..0424abf 100644
--- a/docs/html/guide/topics/location/index.jd
+++ b/docs/html/guide/topics/location/index.jd
@@ -1,4 +1,5 @@
page.title=Location and Maps
+excludeFromSuggestions=true
@jd:body
<div id="qv-wrapper">
diff --git a/docs/html/guide/topics/location/strategies.jd b/docs/html/guide/topics/location/strategies.jd
index 155c86e..f5f61a0 100644
--- a/docs/html/guide/topics/location/strategies.jd
+++ b/docs/html/guide/topics/location/strategies.jd
@@ -1,5 +1,7 @@
page.title=Location Strategies
+excludeFromSuggestions=true
page.tags="geolocation","maps","mapview"
+
@jd:body
<div id="tb-wrapper">
diff --git a/docs/html/guide/topics/sensors/index.jd b/docs/html/guide/topics/sensors/index.jd
index 726476a..65560e6 100644
--- a/docs/html/guide/topics/sensors/index.jd
+++ b/docs/html/guide/topics/sensors/index.jd
@@ -1,5 +1,6 @@
-page.title=Location and Sensors
+page.title=Location and Sensors APIs
page.landing=true
+page.tags="location","sensors"
page.landing.intro=Use sensors on the device to add rich location and motion capabilities to your app, from GPS or network location to accelerometer, gyroscope, temperature, barometer, and more.
page.landing.image=
@@ -29,7 +30,7 @@ venues - as well as providing a reasonable level of offline support</p>
<div class="col-6">
<h3>Training</h3>
- <a href="http://developer.android.com/training/basics/location/index.html">
+ <a href="http://developer.android.com/training/location/index.html">
<h4>Making Your App Location Aware</h4>
<p>This class teaches you how to incorporate location based services in your Android
application. You'll learn a number of methods to receive location updates and related best