Home
last modified time | relevance | path

Searched refs:mTapRegions (Results 1 – 1 of 1) sorted by relevance

/packages/apps/PermissionController/src/android/support/wearable/view/
DWearableListView.java117 private final float[] mTapRegions = new float[2]; field in WearableListView
475 computeTapRegions(mTapRegions); in checkForTap()
476 if (rawY > mTapRegions[0] && rawY < mTapRegions[1]) { in checkForTap()
482 if (index > 0 && rawY <= mTapRegions[0]) { in checkForTap()
486 if (index < getChildCount() - 1 && rawY >= mTapRegions[1]) { in checkForTap()
490 if (index == 0 && rawY <= mTapRegions[0] && mClickListener != null) { in checkForTap()
742 computeTapRegions(mTapRegions); in handleTouchDown()
743 if (rawY > mTapRegions[0] && rawY < mTapRegions[1]) { in handleTouchDown()