Home
last modified time | relevance | path

Searched refs:newView (Results 1 – 25 of 40) sorted by relevance

12

/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
DCollapsedAlarmViewHolder.java198 final View newView = newHolder.itemView; in createExpandingAnimator() local
199 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView) in createExpandingAnimator()
221 final View newView = itemView; in createCollapsingAnimator() local
222 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView) in createCollapsingAnimator()
229 ((ViewGroup) newView).offsetDescendantRectToMyCoords(arrow, newArrowRect); in createCollapsingAnimator()
DExpandedAlarmViewHolder.java351 final View newView = newHolder.itemView; in createCollapsingAnimator() local
357 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView); in createCollapsingAnimator()
412 final View newView = itemView; in createExpandingAnimator() local
413 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView); in createExpandingAnimator()
417 final Animator backgroundAnimator = ObjectAnimator.ofPropertyValuesHolder(newView, in createExpandingAnimator()
424 ((ViewGroup) newView).offsetDescendantRectToMyCoords(arrow, newArrowRect); in createExpandingAnimator()
/packages/apps/Calendar/src/com/android/calendar/
DStickyHeaderListView.java269 boolean newView = false; in updateStickyHeader()
280 newView = true; in updateStickyHeader()
290 newView = true; in updateStickyHeader()
327 if (newView) { in updateStickyHeader()
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/manageapplications/
DApplicationViewHolderTest.java48 mView = ApplicationViewHolder.newView(new FrameLayout(mContext)); in seUp()
102 mView = ApplicationViewHolder.newView(new FrameLayout(mContext), true); in twoTouchTarget()
110 mView = ApplicationViewHolder.newView(new FrameLayout(mContext), true); in updateSwitch()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/manageapplications/
DApplicationViewHolder.java62 static View newView(ViewGroup parent) { in newView() method in ApplicationViewHolder
63 return newView(parent, false /* twoTarget */); in newView()
66 static View newView(ViewGroup parent, boolean twoTarget) { in newView() method in ApplicationViewHolder
/packages/apps/Settings/src/com/android/settings/applications/manageapplications/
DApplicationViewHolder.java62 static View newView(ViewGroup parent) { in newView() method in ApplicationViewHolder
63 return newView(parent, false /* twoTarget */); in newView()
66 static View newView(ViewGroup parent, boolean twoTarget) { in newView() method in ApplicationViewHolder
/packages/apps/TV/src/com/android/tv/menu/
DMenuView.java260 View newView = super.focusSearch(focused, direction); in getUpDownFocus() local
262 MenuRowView newFocusedParent = getParentMenuRowView(newView); in getUpDownFocus()
286 return newView; in getUpDownFocus()
/packages/apps/Contacts/src/com/android/contacts/list/
DLegacyPhoneNumberListAdapter.java77 protected ContactListItemView newView( in newView() method in LegacyPhoneNumberListAdapter
80 super.newView(context, partition, cursor, position, parent); in newView()
DPostalAddressListAdapter.java113 protected ContactListItemView newView( in newView() method in PostalAddressListAdapter
115 ContactListItemView view = super.newView(context, partition, cursor, position, parent); in newView()
DEmailAddressListAdapter.java123 protected ContactListItemView newView( in newView() method in EmailAddressListAdapter
125 ContactListItemView view = super.newView(context, partition, cursor, position, parent); in newView()
DJoinContactListAdapter.java166 protected ContactListItemView newView( in newView() method in JoinContactListAdapter
171 return super.newView(context, partition, cursor, position, parent); in newView()
DMultiSelectEmailAddressesListAdapter.java135 protected ContactListItemView newView( in newView() method in MultiSelectEmailAddressesListAdapter
137 … final ContactListItemView view = super.newView(context, partition, cursor, position, parent); in newView()
DMultiSelectPhoneNumbersListAdapter.java135 protected ContactListItemView newView( in newView() method in MultiSelectPhoneNumbersListAdapter
137 … final ContactListItemView view = super.newView(context, partition, cursor, position, parent); in newView()
DContactListAdapter.java220 protected ContactListItemView newView( in newView() method in ContactListAdapter
222 ContactListItemView view = super.newView(context, partition, cursor, position, parent); in newView()
DHeaderEntryContactListAdapter.java63 itemView = newView(getContext(), 0, getCursor(0), 0, parent); in getView()
/packages/apps/Gallery/src/com/android/camera/
DViewImage.java822 ImageViewTouchBase newView = in loadNextImage()
824 newView.setVisibility(View.VISIBLE); in loadNextImage()
825 newView.setImageRotateBitmapResetBase(bitmap, true); in loadNextImage()
826 newView.bringToFront(); in loadNextImage()
839 newView.startAnimation(aIn); in loadNextImage()
840 newView.setVisibility(View.VISIBLE); in loadNextImage()
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
DGalleryGridAdapter.java66 view = newView(context, getCursor(), parent); in getView()
91 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in GalleryGridAdapter
/packages/apps/Contacts/src/com/android/contacts/group/
DGroupMembersAdapter.java138 protected ContactListItemView newView(Context context, int partition, Cursor cursor, in newView() method in GroupMembersAdapter
141 super.newView(context, partition, cursor, position, parent); in newView()
/packages/apps/Launcher3/src/com/android/launcher3/util/
DFocusLogic.java545 View newView = nextPage.getChildAt(column, row);
546 if (newView != null) {
547 return newView;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DWordListPreference.java103 final View newView = super.onCreateView(parent); in onCreateView()
104 return mInterfaceState.addToCacheAndReturnView(newView); in onCreateView()
/packages/apps/Launcher3/src/com/android/launcher3/qsb/
DQsbContainerView.java352 return mViewFactory.newView(context); in onCreateView()
366 QsbWidgetHostView newView(Context context); in newView() method
/packages/apps/Launcher3/src/com/android/launcher3/allapps/
DAllAppsContainerView.java465 View newView = getLayoutInflater().inflate(layout, this, false); in replaceRVContainer() local
466 addView(newView, index); in replaceRVContainer()
468 mViewPager = (AllAppsPagedView) newView; in replaceRVContainer()
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
DGalleryGridAdapter.java58 public View newView(final Context context, final Cursor cursor, final ViewGroup parent) { in newView() method in GalleryGridAdapter
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
DContactListAdapter.java61 public View newView(final Context context, final Cursor cursor, final ViewGroup parent) { in newView() method in ContactListAdapter
/packages/apps/Gallery2/src/com/android/photos/adapters/
DPhotoThumbnailAdapter.java58 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in PhotoThumbnailAdapter

12