Searched defs:scroll (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/filmstrip/
H A DFilmstripController.java95 public void scroll(float deltaX); method in interface:FilmstripController
278 * The callback when we scroll.
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DWallpaperOffsetInterpolator.java108 public float wallpaperOffsetForScroll(int scroll) { argument
135 // Calculate the scroll range
145 int adjustedScroll = scroll - leftPageScrollX -
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
H A DBandController_GridModelTest.java214 scroll(CHILD_VIEW_EDGE_PX);
220 scroll(CHILD_VIEW_EDGE_PX);
223 scroll(-2 * CHILD_VIEW_EDGE_PX);
275 private void scroll(int dy) { method in class:BandController_GridModelTest
/packages/apps/Music/src/com/android/music/
H A DVerticalTextSpinner.java172 scroll();
177 scroll();
225 scroll();
232 scroll();
369 * scroll past it.
373 scroll();
431 private void scroll() { method in class:VerticalTextSpinner
/packages/apps/Camera2/src/com/android/camera/ui/
H A DModeListView.java80 // Assumption for time since last scroll when no data point for last scroll.
94 * A factor to change the UI responsiveness on a scroll.
95 * e.g. A scroll factor of 0.5 means UI will move half as fast as the finger.
788 scroll(mFocusItem, distanceX * SCROLL_FACTOR,
1567 private void scroll(int itemId, float deltaX, float deltaY) { method in class:ModeListView
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DMultiShrinkScroller.java57 * scroll state in savedInstanceState bundles.
102 * Did the current downwards fling/scroll-animation start while we were fullscreen?
213 // off the screen. Lie to the listener: tell it that we did scroll off the screen.
583 // Scroll nested scroll view to its top
636 // If the current fling is predicted to scroll past the top, then we don't need to snap
645 // We are above the starting scroll position so snap to the top.
661 * If needed, scroll all the subviews off the bottom of the Window.
702 ObjectAnimator translateAnimation = ObjectAnimator.ofInt(this, "scroll",
715 * @param scrollToCurrentPosition if true, will scroll from the bottom of the screen to the
716 * current position. Otherwise, will scroll fro
806 setScroll(int scroll) argument
[all...]
/packages/apps/PackageInstaller/src/android/support/wearable/view/
H A DWearableListView.java339 // super.onTouchEvent can change the state of the scroll, keep a copy so that handleTouchUp
392 * Removes listener for scroll events.
512 private void startScrollAnimation(List<Animator> animators, int scroll, long duration) { argument
513 startScrollAnimation(animators, scroll, duration, 0);
516 private void startScrollAnimation(List<Animator> animators, int scroll, long duration, argument
518 startScrollAnimation(animators, scroll, duration, delay, null);
522 int scroll, long duration, long delay, Animator.AnimatorListener listener) {
523 startScrollAnimation(null, scroll, duration, delay, listener);
526 private void startScrollAnimation(List<Animator> animators, int scroll, long duration, argument
534 0, -scroll);
521 startScrollAnimation( int scroll, long duration, long delay, Animator.AnimatorListener listener) argument
756 setScrollVertically(int scroll) argument
1252 onScroll(int scroll) argument
1263 onAbsoluteScrollChange(int scroll) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/widget/
H A DFilmstripView.java1947 // scroll center animation finishes. Once everything
2151 public void scroll(float deltaX) { method in class:FilmstripView.FilmstripControllerImpl
2576 /** Only starts and updates scroll in x-axis. */
2729 // Special case to go to filmstrip when the user scroll away
2787 mController.scroll(deltaX);
2825 mController.scroll((int) (deltaX * 1.2));
2834 final float scroll;
2840 scroll = vscroll;
2842 scroll = hscroll;
2846 onFling(-scroll,
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DWorkspace.java618 // transition animations competing with us changing the scroll when we add pages or the
1194 // Ignore pointer scroll events if the custom content doesn't allow scrolling.
1292 // is under a new page (to scroll to)
1415 * The overlay scroll is being controlled locally, just update our overlay effect
1417 public void onOverlayScrollChanged(float scroll) { argument
1419 if (Float.compare(scroll, 1f) == 0) {
1425 } else if (Float.compare(scroll, 0f) == 0) {
1435 scroll = Math.max(scroll - offset, 0);
1436 scroll
[all...]

Completed in 5420 milliseconds