summaryrefslogtreecommitdiffstats
path: root/docs/html/design/patterns/gestures.jd
blob: ada07350e3b3f10274a92cc49de18e552765089d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
page.title=Gestures
page.tags=gesture,input,touch
@jd:body

<a class="notice-designers-material"
   href="http://www.google.com/design/spec/patterns/gestures.html">
  <div>
    <h3>Material Design</h3>
    <p>Gestures<p>
  </div>
</a>

<p>Gestures allow users to interact with your app by manipulating the screen objects you provide. The
following table shows the core gesture set that is supported in Android.</p>

<div class="vspace size-2">&nbsp;</div>

<div class="layout-content-row">

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_touch.png">
    <h4>Touch</h4>
    <p>Triggers the default functionality for a given item.</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>Press, lift</p></li>
    </ul>
  </div>

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_longtouch.png">
    <h4>Long press</h4>
    <p>Enters data selection mode. Allows you to select one or more items in a view and act upon
    the data using a contextual action bar. Avoid using long press for showing contextual menus.</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>Press, wait, lift</p></li>
    </ul>
  </div>

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_swipe.png">
    <h4>Swipe or drag</h4>
    <p>Scrolls overflowing content, or navigates between views in the same hierarchy. Swipes are
    quick and affect the screen even after the finger is picked up. Drags are slower and more precise,
    and the screen stops responding when the finger is picked up.</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>Press, move, lift</p></li>
    </ul>
  </div>

</div>

<div class="vspace size-2">&nbsp;</div>

<div class="layout-content-row">

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_drag.png">
    <h4>Long press drag</h4>
    <p>Rearranges data within a view, or moves data into a container (e.g. folders on Home Screen).</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>Long press, move, lift</p></li>
    </ul>
  </div>

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_doubletouch.png">
    <h4>Double touch </h4>
    <p> Scales up a standard amount around the target with each repeated gesture until reaching
    maximum scale. For nested views, scales up the smallest targetable view, or returns it to
    its original scale. Also used as a secondary gesture for text selection.</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>Two touches in quick succession</p>
      </li>
    </ul>
  </div>

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_doubletouchdrag.png">
    <h4>Double touch drag</h4>
    <p>Scales content by pushing away or pulling closer, centered around gesture.</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>A single touch followed in quick succession by a drag up or down:</p>
        <ul style="padding-left:1.5em;list-style-type:disc;">
          <li>Dragging up decreases content scale</li>
          <li>Dragging down increases content scale</li>
          <li>Reversing drag direction reverses scaling.</li>
        </ul>
      </li>
    </ul>
  </div>

</div>


<div class="vspace size-2">&nbsp;</div>

<div class="layout-content-row">

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_pinchopen.png" style="margin-left:-4px">
    <h4>Pinch open</h4>
    <p>Zooms into content.</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>2-finger press, move outwards, lift</p></li>
    </ul>
  </div>

  <div class="layout-content-col span-4">
    <img src="{@docRoot}design/media/gesture_pinchclose.png">
    <h4>Pinch close</h4>
    <p>Zooms out of content.</p>
    <ul>
      <li class="no-bullet with-icon action">
        <h4>Action</h4>
        <p>2-finger press, move inwards, lift</p>
      </li>
    </ul>
  </div>

</div>