aboutsummaryrefslogtreecommitdiff
path: root/sensors
diff options
context:
space:
mode:
authorBenjamin Weiss <benweiss@google.com>2014-11-25 11:48:10 +0000
committerBenjamin Weiss <benweiss@google.com>2014-11-25 11:48:10 +0000
commit91e827823043a727a85103bafa3f7f4f3f81b942 (patch)
tree83cf64307cb7d7c6ccc8525ddcbfed0cc78a116a /sensors
parent003455e5d64bcaffa4c898287c71dbc155ff5e73 (diff)
downloadandroid-91e827823043a727a85103bafa3f7f4f3f81b942.tar.gz
Updates metadata for "BatchStepSensor" sample
Change-Id: I3ef00ffaa2c03c30758dcf220151d8c03c51a8a4
Diffstat (limited to 'sensors')
-rw-r--r--sensors/BatchStepSensor/packaging.yaml2
-rw-r--r--sensors/BatchStepSensor/screenshots/big_icon.pngbin0 -> 72006 bytes
-rw-r--r--sensors/BatchStepSensor/screenshots/screenshot1.pngbin0 -> 301385 bytes
-rw-r--r--sensors/BatchStepSensor/screenshots/screenshot2.pngbin0 -> 224367 bytes
-rw-r--r--sensors/BatchStepSensor/screenshots/screenshot3.pngbin0 -> 153288 bytes
-rw-r--r--sensors/BatchStepSensor/screenshots/screenshot4.pngbin0 -> 198321 bytes
-rw-r--r--sensors/BatchStepSensor/screenshots/screenshot5.pngbin0 -> 154463 bytes
-rw-r--r--sensors/BatchStepSensor/template-params.xml67
8 files changed, 56 insertions, 13 deletions
diff --git a/sensors/BatchStepSensor/packaging.yaml b/sensors/BatchStepSensor/packaging.yaml
index 1002b366..c78b852b 100644
--- a/sensors/BatchStepSensor/packaging.yaml
+++ b/sensors/BatchStepSensor/packaging.yaml
@@ -11,5 +11,5 @@ languages: [Java]
solutions: [Mobile]
github: googlesamples/android-BatchStepSensor
level: BEGINNER
-icon: BatchStepSensorSample/src/main/res/drawable-xxhdpi/ic_launcher.png
+icon: BatchStepSensorSample/screenshots/big_icon.png
license: apache2-android
diff --git a/sensors/BatchStepSensor/screenshots/big_icon.png b/sensors/BatchStepSensor/screenshots/big_icon.png
new file mode 100644
index 00000000..7f068902
--- /dev/null
+++ b/sensors/BatchStepSensor/screenshots/big_icon.png
Binary files differ
diff --git a/sensors/BatchStepSensor/screenshots/screenshot1.png b/sensors/BatchStepSensor/screenshots/screenshot1.png
new file mode 100644
index 00000000..3c202a5b
--- /dev/null
+++ b/sensors/BatchStepSensor/screenshots/screenshot1.png
Binary files differ
diff --git a/sensors/BatchStepSensor/screenshots/screenshot2.png b/sensors/BatchStepSensor/screenshots/screenshot2.png
new file mode 100644
index 00000000..84865c2a
--- /dev/null
+++ b/sensors/BatchStepSensor/screenshots/screenshot2.png
Binary files differ
diff --git a/sensors/BatchStepSensor/screenshots/screenshot3.png b/sensors/BatchStepSensor/screenshots/screenshot3.png
new file mode 100644
index 00000000..402ea410
--- /dev/null
+++ b/sensors/BatchStepSensor/screenshots/screenshot3.png
Binary files differ
diff --git a/sensors/BatchStepSensor/screenshots/screenshot4.png b/sensors/BatchStepSensor/screenshots/screenshot4.png
new file mode 100644
index 00000000..17043a96
--- /dev/null
+++ b/sensors/BatchStepSensor/screenshots/screenshot4.png
Binary files differ
diff --git a/sensors/BatchStepSensor/screenshots/screenshot5.png b/sensors/BatchStepSensor/screenshots/screenshot5.png
new file mode 100644
index 00000000..c448d039
--- /dev/null
+++ b/sensors/BatchStepSensor/screenshots/screenshot5.png
Binary files differ
diff --git a/sensors/BatchStepSensor/template-params.xml b/sensors/BatchStepSensor/template-params.xml
index a07579de..d43c8772 100644
--- a/sensors/BatchStepSensor/template-params.xml
+++ b/sensors/BatchStepSensor/template-params.xml
@@ -14,33 +14,27 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
-
-
<sample>
<name>BatchStepSensor</name>
<group>Sensors</group>
<package>com.example.android.batchstepsensor</package>
-
-
-
<!-- change minSdk if needed-->
<minSdk>19</minSdk>
-
-
<strings>
<intro>
<![CDATA[
- This sample demonstrates the use of the two step sensors (step detector and counter) and
- sensor batching.\n\n It shows how to register a SensorEventListener with and without
- batching and shows how these events are received.\n\nThe Step Detector sensor fires an
+ <p>This sample demonstrates the use of the two step sensors (step detector and counter) and
+ sensor batching.</p>
+ <p>It shows how to register a SensorEventListener with and without
+ batching and shows how these events are received.</p>
+ <p>The Step Detector sensor fires an
event when a step is detected, while the step counter returns the total number of
steps since a listener was first registered for this sensor.
Both sensors only count steps while a listener is registered. This sample only covers the
basic case, where a listener is only registered while the app is running. Likewise,
batched sensors can be used in the background (when the CPU is suspended), which
requires manually flushing the sensor event queue before it overflows, which is not
- covered in this sample.
+ covered in this sample.</p>
]]>
</intro>
</strings>
@@ -49,5 +43,54 @@
<template src="CardStream"/>
<common src="logger"/>
<common src="activities"/>
+ <metadata>
+ <status>PUBLISHED</status>
+ <categories>Sensors</categories>
+ <technologies>Android</technologies>
+ <languages>Java</languages>
+ <solutions>Mobile</solutions>
+ <level>BEGINNER</level>
+ <icon>screenshots/big_icon.png</icon>
+ <screenshots>
+ <img>screenshots/screenshot1.png</img>
+ <img>screenshots/screenshot2.png</img>
+ <img>screenshots/screenshot3.png</img>
+ <img>screenshots/screenshot4.png</img>
+ <img>screenshots/screenshot5.png</img>
+ <img>screenshots/screenshot6.png</img>
+ </screenshots>
+ <api_refs>
+ <android>android.hardware.Sensor</android>
+ <android>android.hardware.SensorEvent</android>
+ <android>android.hardware.SensorEventListener</android>
+ <android>android.hardware.SensorManager</android>
+ </api_refs>
+ <description>
+ Sample demonstrating how to set up SensorEventListeners for step
+ detectors and step counters.
+ </description>
+
+ <intro>
+ This sample demonstrates the use of the two step [sensors][1] (step detector and counter) and
+ sensor batching.
+
+ It shows how to register a [SensorEventListener][2] with and without
+ batching and shows how these events are received.
+
+ The Step Detector sensor fires an
+ event when a step is detected, while the step counter returns the total number of
+ steps since a listener was first registered for this sensor.
+
+ Both sensors only count steps while a listener is registered. This sample only covers the
+ basic case, where a listener is only registered while the app is running. Likewise,
+ batched sensors can be used in the background (when the CPU is suspended), which
+ requires manually flushing the [sensor event][3] queue before it overflows, which is not
+ covered in this sample.
+
+ [1]: https://developer.android.com/reference/android/hardware/Sensor.html
+ [2]: https://developer.android.com/reference/android/hardware/SensorEventListener.html
+ [3]: https://developer.android.com/reference/android/hardware/SensorEvent.html
+ </intro>
+</metadata>
</sample>