Searched refs:activePointerId (Results 1 - 12 of 12) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DPhotoViewPager.java133 final int activePointerId = mActivePointerId;
134 if (activePointerId == INVALID_POINTER) {
140 MotionEventCompat.findPointerIndex(ev, activePointerId);
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java174 * currently dragging the captured view is supplied. If activePointerId is
179 * @param activePointerId Pointer id tracking the child capture
181 public void onViewCaptured(View capturedChild, int activePointerId) {} argument
457 * @param activePointerId ID of the pointer that is dragging the captured child view
459 public void captureChildView(View childView, int activePointerId) { argument
466 mActivePointerId = activePointerId;
467 mCallback.onViewCaptured(childView, activePointerId);
H A DSwipeRefreshLayout.java686 private float getMotionEventY(MotionEvent ev, int activePointerId) { argument
687 final int index = MotionEventCompat.findPointerIndex(ev, activePointerId);
H A DSlidingPaneLayout.java1322 public void onViewCaptured(View capturedChild, int activePointerId) { argument
H A DDrawerLayout.java1674 public void onViewCaptured(View capturedChild, int activePointerId) { argument
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java465 final int activePointerId = mActivePointerId;
466 if (activePointerId == INVALID_POINTER) {
471 final int pointerIndex = ev.findPointerIndex(activePointerId);
473 Log.e(TAG, "Invalid pointerId=" + activePointerId
H A DScrollView.java500 final int activePointerId = mActivePointerId;
501 if (activePointerId == INVALID_POINTER) {
506 final int pointerIndex = ev.findPointerIndex(activePointerId);
508 Log.e(TAG, "Invalid pointerId=" + activePointerId
H A DListPopupWindow.java1549 * @param activePointerId id of the pointer that activated forwarding
1552 public boolean onForwardedEvent(MotionEvent event, int activePointerId) { argument
1565 final int activeIndex = event.findPointerIndex(activePointerId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1899 final int activePointerId = mActivePointerId;
1900 if (activePointerId == INVALID_POINTER) {
1905 final int pointerIndex = ev.findPointerIndex(activePointerId);
1907 Log.e(TAG, "Invalid pointerId=" + activePointerId
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java1556 * @param activePointerId id of the pointer that activated forwarding
1559 public boolean onForwardedEvent(MotionEvent event, int activePointerId) { argument
1572 final int activeIndex = event.findPointerIndex(activePointerId);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java1573 final int activePointerId = mActivePointerId;
1574 final int pointerIndex = ev.findPointerIndex(activePointerId);
1581 int velocityX = (int) velocityTracker.getXVelocity(activePointerId);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java1832 final int activePointerId = mActivePointerId;
1833 if (activePointerId == INVALID_POINTER) {
1838 final int pointerIndex = MotionEventCompat.findPointerIndex(ev, activePointerId);

Completed in 870 milliseconds