aboutsummaryrefslogtreecommitdiff
path: root/input/gestures
diff options
context:
space:
mode:
authorJose Alcerreca <jalc@google.com>2014-11-26 11:57:12 +0000
committerJose Alcerreca <jalc@google.com>2014-12-04 11:16:25 +0000
commita07d3946f8b3e146cb4bafae97039b17af99ddc9 (patch)
treed908c10dd61e951a1b8a0bc4fbb5d259ff31e135 /input/gestures
parentb2bff3e616c52c5103e9c17436e81b21eb88a933 (diff)
downloadandroid-a07d3946f8b3e146cb4bafae97039b17af99ddc9.tar.gz
Updates metadata for BasicGestureDetect sample.
Change-Id: I7e068778efc33c3c1208ae40deb02e7b6836f20e
Diffstat (limited to 'input/gestures')
-rw-r--r--input/gestures/BasicGestureDetect/screenshots/1-main.pngbin0 -> 67342 bytes
-rw-r--r--input/gestures/BasicGestureDetect/screenshots/icon-web.pngbin0 -> 75748 bytes
-rw-r--r--input/gestures/BasicGestureDetect/template-params.xml38
3 files changed, 38 insertions, 0 deletions
diff --git a/input/gestures/BasicGestureDetect/screenshots/1-main.png b/input/gestures/BasicGestureDetect/screenshots/1-main.png
new file mode 100644
index 00000000..e7c3419f
--- /dev/null
+++ b/input/gestures/BasicGestureDetect/screenshots/1-main.png
Binary files differ
diff --git a/input/gestures/BasicGestureDetect/screenshots/icon-web.png b/input/gestures/BasicGestureDetect/screenshots/icon-web.png
new file mode 100644
index 00000000..04d0248c
--- /dev/null
+++ b/input/gestures/BasicGestureDetect/screenshots/icon-web.png
Binary files differ
diff --git a/input/gestures/BasicGestureDetect/template-params.xml b/input/gestures/BasicGestureDetect/template-params.xml
index fc8b48d1..cacdd0d0 100644
--- a/input/gestures/BasicGestureDetect/template-params.xml
+++ b/input/gestures/BasicGestureDetect/template-params.xml
@@ -39,4 +39,42 @@
<common src="logger"/>
<common src="activities"/>
+ <metadata>
+ <status>PUBLISHED</status>
+ <categories>UI, Input</categories>
+ <technologies>Android</technologies>
+ <languages>Java</languages>
+ <solutions>Mobile</solutions>
+ <level>INTERMEDIATE</level>
+ <icon>screenshots/icon-web.png</icon>
+ <screenshots>
+ <img>screenshots/1-main.png</img>
+ </screenshots>
+ <api_refs>
+ <android>android.view.GestureDetector</android>
+ <android>android.view.MotionEvent</android>
+ </api_refs>
+ <description>
+<![CDATA[
+This sample detects gestures on a view and logs them. In order to try this
+sample out, try dragging or tapping the text.
+]]>
+ </description>
+ <intro>
+<![CDATA[
+In this sample, the gestures are detected using a custom gesture listener that extends
+[SimpleOnGestureListener][1] and writes the detected [MotionEvent][2] into the log.
+
+In this example, the steps followed to set up the gesture detector are:
+1. Create the GestureListener that includes all your callbacks.
+2. Create the GestureDetector ([SimpleOnGestureListener][1]) that will take the listener as an argument.
+3. For the view where the gestures will occur, create an [onTouchListener][3]
+that sends all motion events to the gesture detector.
+
+[1]: http://developer.android.com/reference/android/view/GestureDetector.SimpleOnGestureListener.html
+[2]: http://developer.android.com/reference/android/view/MotionEvent.html
+[3]: http://developer.android.com/reference/android/view/View.OnTouchListener.html
+]]>
+ </intro>
+ </metadata>
</sample>