Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupContainerWithArrow.java228 DeepShortcutView lastView = null; in onInflationComplete() local
232 if (lastView != null) { in onInflationComplete()
233 lastView.setDividerVisibility(VISIBLE); in onInflationComplete()
235 lastView = (DeepShortcutView) view; in onInflationComplete()
236 lastView.setDividerVisibility(INVISIBLE); in onInflationComplete()
369 DeepShortcutView lastView = null; in updateDividers() local
373 if (lastView != null) { in updateDividers()
374 lastView.setDividerVisibility(VISIBLE); in updateDividers()
376 lastView = (DeepShortcutView) view; in updateDividers()
377 lastView.setDividerVisibility(INVISIBLE); in updateDividers()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationFragment.java214 final View lastView = mRecyclerView.getChildAt(mRecyclerView.getChildCount() - 1); in isScrolledToBottom() local
220 final long id = mRecyclerView.getChildItemId(lastView); in isScrolledToBottom()
228 return isAtBottom && lastView.getBottom() <= mRecyclerView.getHeight(); in isScrolledToBottom()