| /frameworks/support/cursoradapter/src/main/java/androidx/cursoradapter/widget/ |
| CursorAdapter.java | 270 v = newView(mContext, mCursor, parent); 303 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); 314 return newView(context, cursor, parent); 319 * @param view Existing view, returned earlier by newView
|
| /packages/apps/Contacts/src/com/android/contacts/group/ |
| GroupMembersAdapter.java | 138 protected ContactListItemView newView(Context context, int partition, Cursor cursor, 141 super.newView(context, partition, cursor, position, parent);
|
| /packages/apps/Contacts/src/com/android/contacts/list/ |
| EmailAddressListAdapter.java | 123 protected ContactListItemView newView( 125 ContactListItemView view = super.newView(context, partition, cursor, position, parent);
|
| JoinContactListAdapter.java | 166 protected ContactListItemView newView( 171 return super.newView(context, partition, cursor, position, parent);
|
| MultiSelectEmailAddressesListAdapter.java | 135 protected ContactListItemView newView( 137 final ContactListItemView view = super.newView(context, partition, cursor, position, parent);
|
| MultiSelectPhoneNumbersListAdapter.java | 135 protected ContactListItemView newView( 137 final ContactListItemView view = super.newView(context, partition, cursor, position, parent);
|
| PostalAddressListAdapter.java | 113 protected ContactListItemView newView( 115 ContactListItemView view = super.newView(context, partition, cursor, position, parent);
|
| ContactListAdapter.java | 220 protected ContactListItemView newView( 222 ContactListItemView view = super.newView(context, partition, cursor, position, parent);
|
| /packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/ |
| CollapsedAlarmViewHolder.java | 198 final View newView = newHolder.itemView; 199 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(oldView, oldView, newView) 221 final View newView = itemView; 222 final Animator boundsAnimator = AnimatorUtils.getBoundsAnimator(newView, oldView, newView) 229 ((ViewGroup) newView).offsetDescendantRectToMyCoords(arrow, newArrowRect);
|
| /packages/apps/Dialer/java/com/android/contacts/common/list/ |
| ContactListAdapter.java | 64 protected ContactListItemView newView( 66 ContactListItemView view = super.newView(context, partition, cursor, position, parent);
|
| /packages/apps/Dialer/java/com/android/dialer/app/list/ |
| DialerPhoneNumberListAdapter.java | 123 protected ContactListItemView newView( 125 final ContactListItemView view = super.newView(context, partition, cursor, position, parent);
|
| /packages/apps/TV/src/com/android/tv/menu/ |
| MenuView.java | 254 View newView = super.focusSearch(focused, direction); 256 MenuRowView newFocusedParent = getParentMenuRowView(newView); 267 return newView; 269 View newView = super.focusSearch(focused, direction); 271 MenuRowView newFocusedParent = getParentMenuRowView(newView); 283 return newView;
|
| /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
| ContactEntryAdapter.java | 237 v = newView(position, parent); 251 protected abstract View newView(int position, ViewGroup parent);
|
| /development/samples/ApiDemos/src/com/example/android/apis/content/ |
| ChangedContacts.java | 284 public View newView(Context context, Cursor cursor, ViewGroup parent) { 314 public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
| /development/samples/training/threadsample/src/com/example/android/threadsample/ |
| PhotoThumbnailFragment.java | 407 public View newView(Context context, Cursor cursor, ViewGroup viewGroup) {
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
| KeyguardUserSwitcher.java | 213 View newView = mAdapter.getView(i, oldView, mUserSwitcher); 216 mUserSwitcher.addView(newView); 217 } else if (oldView != newView) { 220 mUserSwitcher.addView(newView, i);
|
| /frameworks/ex/common/java/com/android/common/widget/ |
| CompositeCursorAdapter.java | 400 view = newView(mContext, partition, cursor, position, parent); 410 protected abstract View newView(Context context, int partition, Cursor cursor, int position,
|
| /cts/tests/tests/widget/src/android/widget/cts/ |
| CursorAdapterTest.java | 440 public View newView(Context context, Cursor cursor, ViewGroup parent) {
|
| /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/ |
| ContactsListFragment.java | 691 * Overrides newView() to inflate the list item views. 694 public View newView(Context context, Cursor cursor, ViewGroup viewGroup) { [all...] |
| /frameworks/base/core/java/com/android/internal/widget/ |
| DefaultItemAnimator.java | 352 final View newView = newHolder != null ? newHolder.itemView : null; 377 if (newView != null) { 378 final ViewPropertyAnimator newViewAnimation = newView.animate(); 389 newView.setAlpha(1); 390 newView.setTranslationX(0); 391 newView.setTranslationY(0);
|
| /frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/ |
| DeviceDiscoveryService.java | 336 : newView(); 359 private TextView newView() {
|
| /frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
| KeyguardSecurityContainer.java | 378 KeyguardSecurityView newView = getSecurityView(securityMode); 386 newView.onResume(KeyguardSecurityView.VIEW_REVEALED); 387 newView.setKeyguardCallback(mCallback); 403 securityMode != SecurityMode.None && newView.needsInput());
|
| /frameworks/opt/chips/src/com/android/ex/chips/ |
| DropdownChipLayouter.java | 202 public View newView(AdapterType type) {
|
| RecipientAlternatesAdapter.java | 592 convertView = mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES); 614 public View newView(Context context, Cursor cursor, ViewGroup parent) { 615 return mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES);
|
| /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/ |
| DefaultItemAnimator.java | 351 final View newView = newHolder != null ? newHolder.itemView : null; 376 if (newView != null) { 377 final ViewPropertyAnimator newViewAnimation = newView.animate(); 388 newView.setAlpha(1); 389 newView.setTranslationX(0); 390 newView.setTranslationY(0);
|