Home
last modified time | relevance | path

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

/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DDropDownListView.java179 final View motionView = getChildAt(mMotionPosition - getFirstVisiblePosition()); in clearPressedItem() local
180 if (motionView != null) { in clearPressedItem()
181 motionView.setPressed(false); in clearPressedItem()
207 final View motionView = getChildAt(mMotionPosition - getFirstVisiblePosition()); in setPressedItem() local
208 if (motionView != null && motionView != child && motionView.isPressed()) { in setPressedItem()
209 motionView.setPressed(false); in setPressedItem()
/frameworks/base/core/java/android/widget/
DDropDownListView.java246 final View motionView = getChildAt(mMotionPosition - mFirstPosition); in clearPressedItem() local
247 if (motionView != null) { in clearPressedItem()
248 motionView.setPressed(false); in clearPressedItem()
268 final View motionView = getChildAt(mMotionPosition - mFirstPosition); in setPressedItem() local
269 if (motionView != null && motionView != child && motionView.isPressed()) { in setPressedItem()
270 motionView.setPressed(false); in setPressedItem()
DAbsListView.java3490 final View motionView = getChildAt(mMotionPosition - mFirstPosition); in startScrollIfNeeded() local
3491 if (motionView != null) { in startScrollIfNeeded()
3492 motionView.setPressed(false); in startScrollIfNeeded()
3565 View motionView = this.getChildAt(motionIndex); in scrollIfNeeded() local
3566 if (motionView != null) { in scrollIfNeeded()
3567 motionViewPrevTop = motionView.getTop(); in scrollIfNeeded()
3577 motionView = this.getChildAt(motionIndex); in scrollIfNeeded()
3578 if (motionView != null) { in scrollIfNeeded()
3581 final int motionViewRealTop = motionView.getTop(); in scrollIfNeeded()
3692 View motionView = getChildAt(motionPosition - mFirstPosition); in scrollIfNeeded() local
[all …]