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.java245 DeepShortcutView lastView = null; in onInflationComplete() local
249 if (lastView != null) { in onInflationComplete()
250 lastView.setDividerVisibility(VISIBLE); in onInflationComplete()
252 lastView = (DeepShortcutView) view; in onInflationComplete()
253 lastView.setDividerVisibility(INVISIBLE); in onInflationComplete()
380 DeepShortcutView lastView = null; in updateDividers() local
384 if (lastView != null) { in updateDividers()
385 lastView.setDividerVisibility(VISIBLE); in updateDividers()
387 lastView = (DeepShortcutView) view; in updateDividers()
388 lastView.setDividerVisibility(INVISIBLE); in updateDividers()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationFragment.java213 final View lastView = mRecyclerView.getChildAt(mRecyclerView.getChildCount() - 1); in isScrolledToBottom() local
219 final long id = mRecyclerView.getChildItemId(lastView); in isScrolledToBottom()
227 return isAtBottom && lastView.getBottom() <= mRecyclerView.getHeight(); in isScrolledToBottom()