Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/popup/
DPopupContainerWithArrow.java223 DeepShortcutView lastView = null; in onInflationComplete() local
227 if (lastView != null) { in onInflationComplete()
228 lastView.setDividerVisibility(VISIBLE); in onInflationComplete()
230 lastView = (DeepShortcutView) view; in onInflationComplete()
231 lastView.setDividerVisibility(INVISIBLE); in onInflationComplete()
362 DeepShortcutView lastView = null; in updateDividers() local
366 if (lastView != null) { in updateDividers()
367 lastView.setDividerVisibility(VISIBLE); in updateDividers()
369 lastView = (DeepShortcutView) view; in updateDividers()
370 lastView.setDividerVisibility(INVISIBLE); in updateDividers()
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
DAttachmentsView.java433 View lastView = null; in focusLastAttachment() local
438 lastView = mTileGrid.getChildAt(last); in focusLastAttachment()
443 lastView = mAttachmentLayout.getChildAt(last); in focusLastAttachment()
446 if (lastView != null) { in focusLastAttachment()
447 lastView.requestFocus(); in focusLastAttachment()
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountSetupTypeFragment.java56 View lastView = parent.getChildAt(0); in onCreateView() local
70 params.addRule(RelativeLayout.BELOW, lastView.getId()); in onCreateView()
76 lastView = button; in onCreateView()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationFragment.java212 final View lastView = mRecyclerView.getChildAt(mRecyclerView.getChildCount() - 1); in isScrolledToBottom() local
218 final long id = mRecyclerView.getChildItemId(lastView); in isScrolledToBottom()
226 return isAtBottom && lastView.getBottom() <= mRecyclerView.getHeight(); in isScrolledToBottom()