/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
EmptyConversationListView.java | 20 // In order for users to perform swipe down in this text view to trigger 23 // where swipe to refresh detecting happens.
|
/development/samples/browseable/BasicImmersiveMode/ |
_index.jd | 10 navigation bar with a swipe.</p>
|
/frameworks/base/docs/html/design/patterns/ |
swipe-views.jd | 1 page.title=Swipe Views 8 <p>Creating Swipe Views with Tabs</p> 14 vertical hierarchies and make access to related data items faster and more enjoyable. Swipe views 31 using the swipe gesture to navigate to the next/previous detail view.</p> 35 Navigating between consecutive email messages using the swipe gesture. If a view contains content that exceeds the width of the screen such as a wide email message, make sure the user's initial swipes will scroll horizontally within the view. Once the end of the content is reached, an additional swipe should navigate to the next view. In addition, support the use of edge swipes to immediately navigate between views when content scrolls horizontally. 40 Scrolling within a wide email message using the swipe gesture before navigating to the next message. 56 People app with swipe gesture navigation between top-level screens. 62 <p>If your app uses action bar tabs, use swipe to navigate between the different views.</p> 68 <p>Use swipe to quickly navigate between detail views or tabs.</p [all...] |
/development/samples/browseable/ImmersiveMode/ |
_index.jd | 10 navigation bar with a swipe.</p>
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
back-forward-during-alert-2.html | 4 alert("While this alert is showing, two-fingered swipe back using a MacBook trackpad, Magic Trackpad, or Magic Mouse. You should not be able to navigate back. If you can, dismissing this dialog will likely result in a crash.");
|
/external/chromium_org/ui/keyboard/ |
keyboard_switches.cc | 10 const char kEnableSwipeSelection[] = "enable-swipe-selection";
|
keyboard_switches.h | 13 // Enables the swipe selection feature on the virtual keyboard.
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
swipe.py | 15 for js_file in ['gesture_common.js', 'swipe.js']: 20 # Fail if browser doesn't support synthetic swipe gestures. 23 'Synthetic swipe not supported for this browser') 47 'Invalid swipe direction: %s' % direction) 82 # Make the swipe action start and stop measurement automatically.
|
/frameworks/base/docs/html/design/building-blocks/ |
tabs.jd | 10 <p>Creating Swipe Views with Tabs</p> 17 <p>For details on using gestures to move between tabs, see the <a href="{@docRoot}design/patterns/swipe-views.html">Swipe Views</a> pattern.</p> 26 to the next/previous view, swipe left or right.</p> 46 <p>Fixed tabs display all items concurrently. To navigate to a different view, touch the tab, or swipe left or right.</p>
|
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/ |
SwipePinchDetector.java | 12 * Helper class for disambiguating whether to treat a two-finger gesture as a swipe or a pinch. 20 SWIPE, 54 /** Returns whether a swipe is in progress. */ 56 return mState == State.SWIPE; 67 * swipe or a pinch, further 2-finger motion-events will be ignored. When a different event is 123 // soon that SWIPE never gets triggered. 126 // cannot be equal to the touch-slop, because in that case, SWIPE would rarely be detected. 129 // SWIPE to be detected. Doubling the radius is an arbitrary choice that works well. 153 // Both fingers have moved, so determine SWIPE/PINCH status. If the fingers have moved in 154 // the same direction, this is a SWIPE, otherwise it's a PINCH. This can be measured b [all...] |
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
SystemGesturesPointerEventListener.java | 91 final int swipe = detectSwipe(event); 92 mSwipeFireable = swipe == SWIPE_NONE; 93 if (swipe == SWIPE_FROM_TOP) { 96 } else if (swipe == SWIPE_FROM_BOTTOM) { 99 } else if (swipe == SWIPE_FROM_RIGHT) { 153 final int swipe = detectSwipe(i, time, x, y); 154 if (swipe != SWIPE_NONE) { 155 return swipe; 158 final int swipe = detectSwipe(i, move.getEventTime(), move.getX(p), move.getY(p)); 159 if (swipe != SWIPE_NONE) [all...] |
/external/chromium_org/chrome/browser/renderer_host/ |
chrome_render_widget_host_view_mac_history_swiper.h | 26 // Responsible for maintaining state for 2-finger swipe history navigation. 28 // We want to be able to cancel history swipes if the user's swipe has a lot of 30 // vertical swipe distance, and it swallows the touch events so that we can't 51 // This controller will exist if and only if the UI is in history swipe mode. 67 // The id of the last gesture that we processed as a history swipe. 69 // A flag that indicates that we cancelled the history swipe for the current 72 // A flag that indicates the user's intended direction with the history swipe. 79 // Magic mouse and touchpad swipe events are identical except magic mouse 81 // callbacks to determine vertical scrolling, magic mouse swipe events use an 86 // callbacks for a non-deterministic period of time (even after the swipe ha [all...] |
chrome_render_widget_host_view_mac_history_swiper.mm | 129 // Consider cancelling the history swipe gesture. 173 // Consider cancelling the horizontal swipe if the user was intending a 174 // vertical swipe. 210 // If the swipe is a backwards gesture, we need to invert progress. 236 // history swipe. 240 // Does not prevent swipe events from propagating to other handlers. 295 // We use an entirely different set of logic for magic mouse swipe events, 346 // When starting a backwards navigation gesture (swipe from left to right, 355 // will become less than 0, but on the quick swipe back to the left, 358 // direction after the initial swipe doesn't cause the shield to mov [all...] |
/development/samples/browseable/AdvancedImmersiveMode/ |
_index.jd | 10 navigation bar with a swipe.</p>
|
/external/chromium_org/ui/events/gestures/ |
gesture_types.cc | 45 data.swipe.left = delta_x < 0; 46 data.swipe.right = delta_x > 0; 47 data.swipe.up = delta_y < 0; 48 data.swipe.down = delta_y > 0;
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
SwipeableConversationItemView.java | 70 public void startUndoAnimation(AnimatorListener listener, boolean swipe) { 71 final Animator a = (swipe) ? mConversationItemView.createSwipeUndoAnimation() 77 public void startDeleteAnimation(AnimatorListener listener, boolean swipe) { 78 final Animator a = (swipe) ? mConversationItemView.createDestroyWithSwipeAnimation()
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
Settings.java | 31 import com.android.mail.providers.UIProvider.Swipe; 90 public final int swipe; field in class:Settings 123 swipe = DEFAULT; 146 swipe = inParcel.readInt(); 174 swipe = cursor.getInt(cursor.getColumnIndex(SettingsColumns.SWIPE)); 206 swipe = json.optInt(SettingsColumns.SWIPE, sDefault.swipe); 252 json.put(SettingsColumns.SWIPE, swipe) [all...] |
/developers/build/prebuilts/gradle/BatchStepSensor/BatchStepSensorSample/src/main/java/com/example/android/batchstepsensor/ |
CardStreamAnimator.java | 67 * Define swipe-in (back to the origin position) animation of a child 73 * @return ObjectAnimator for swipe-in animation 78 * Define swipe-out animation of a child 79 * which fired when a view is removing by a user swipe action. 84 * @return ObjectAnimator for swipe-out animation
|
/developers/build/templates/CardStream/_MODULE_/src/template/java/_PACKAGE_/ |
CardStreamAnimator.java.ftl | 65 * Define swipe-in (back to the origin position) animation of a child 71 * @return ObjectAnimator for swipe-in animation 76 * Define swipe-out animation of a child 77 * which fired when a view is removing by a user swipe action. 82 * @return ObjectAnimator for swipe-out animation
|
/frameworks/base/docs/html/training/implementing-navigation/ |
lateral.jd | 1 page.title=Creating Swipe Views with Tabs 2 page.tags="viewpager","horizontal","paging","swipe view","tabs" 13 <li><a href="#horizontal-paging">Implement Swipe Views</a></li> 15 <li><a href="#swipe-tabs">Change Tabs with Swipe Views</a></li> 24 <li><a href="{@docRoot}design/patterns/swipe-views.html">Android Design: Swipe Views</a></li> 39 <p>Swipe views provide lateral navigation between sibling screens such as tabs with 41 you how to create a tab layout with swipe views for switching between tabs, or how to show 45 <p><strong>Swipe View Design</strong></p [all...] |
index.jd | 45 implement navigation patterns with tabs, swipe views, and a navigation drawer. You should also 58 <dt><strong><a href="lateral.html">Creating Swipe Views with Tabs</a></strong></dt> 60 horizontal paging (swipe views) to navigate between tabs.</dd> 64 of the screen that opens with a swipe or by pressing the action bar's app icon.</dd>
|
/external/chromium_org/ash/wm/gestures/ |
overview_gesture_handler_unittest.cc | 38 // Tests a swipe up with three fingers to enter and a swipe down to exit 66 // Tests that a mostly horizontal swipe does not trigger overview. 82 // Tests a swipe up with three fingers without releasing followed by a swipe 143 // Tests a swipe down from the top of the screen to enter and exit overview. 159 // Tests that a swipe down from the top of a window doesn't enter overview.
|
overview_gesture_handler.cc | 23 // the overview swipe down gesture to begin within. Note this does not actually 25 // prevent entering overview with a swipe down. 28 // The threshold before engaging overview on a three finger swipe on the 60 // Only allow swipe up to enter overview, down to exit. Ignore extra swiping
|
/external/chromium_org/ui/keyboard/resources/elements/ |
kb-keyboard.html | 125 * The maximum swipe distance that will trigger hintText of a key 133 * The boolean to decide if it is swipe in process or finished. 149 * A structure to track the current swipe status. 153 * The latest PointerMove event in the swipe. 159 * Whether or not a swipe changes direction. 179 * The PointerMove event which triggered the swipe. 191 * Current swipe direction. 197 * The number of times we've swiped within a single swipe. 209 // Checks for horizontal swipe. 217 // Checks for vertical swipe [all...] |
/external/chromium_org/ui/keyboard/resources/ |
constants.js | 27 * The enumeration of swipe directions.
|