Home
last modified time | relevance | path

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

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DAutoSizingList.java95 View newView = mAdapter.getView(i, v, this); in rebindChildren()
96 if (newView != v) { in rebindChildren()
100 addView(newView, i); in rebindChildren()
DPseudoGridView.java180 View newView = mAdapter.getView(i, oldView, viewGroup); in refresh() local
183 viewGroup.addView(newView); in refresh()
184 } else if (oldView != newView) { in refresh()
187 viewGroup.addView(newView, i); in refresh()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationInflater.java352 View newView = existingView; in applyRemoteView()
354 newView = newContentView.apply( in applyRemoteView()
366 onViewApplied(newView); in applyRemoteView()
495 static boolean canReapplyRemoteView(final RemoteViews newView, in canReapplyRemoteView() argument
497 return (newView == null && oldView == null) || in canReapplyRemoteView()
498 (newView != null && oldView != null in canReapplyRemoteView()
500 && newView.getPackage() != null in canReapplyRemoteView()
501 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()
502 && newView.getLayoutId() == oldView.getLayoutId() in canReapplyRemoteView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyguardUserSwitcher.java213 View newView = mAdapter.getView(i, oldView, mUserSwitcher); in refresh() local
216 mUserSwitcher.addView(newView); in refresh()
217 } else if (oldView != newView) { in refresh()
220 mUserSwitcher.addView(newView, i); in refresh()
/frameworks/base/core/java/android/widget/
DCursorAdapter.java285 v = newView(mContext, mCursor, parent); in getView()
319 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); in newView() method in CursorAdapter
330 return newView(context, cursor, parent); in newDropDownView()
DResourceCursorAdapter.java134 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ResourceCursorAdapter
DSuggestionsAdapter.java284 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in SuggestionsAdapter
285 final View v = super.newView(context, cursor, parent); in newView()
495 View v = newView(mContext, mCursor, parent); in getView()
DAdapterViewAnimator.java545 View newView = mAdapter.getView(adapterPosition, null, this); in showOnly() local
553 if (newView != null) { in showOnly()
554 fl.addView(newView); in showOnly()
/frameworks/support/core-ui/java/android/support/v4/widget/
DCursorAdapter.java269 v = newView(mContext, mCursor, parent); in getView()
302 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); in newView() method in CursorAdapter
313 return newView(context, cursor, parent); in newDropDownView()
DResourceCursorAdapter.java111 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ResourceCursorAdapter
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DDefaultItemAnimator.java351 final View newView = newHolder != null ? newHolder.itemView : null; in animateChangeImpl() local
376 if (newView != null) { in animateChangeImpl()
377 final ViewPropertyAnimator newViewAnimation = newView.animate(); in animateChangeImpl()
388 newView.setAlpha(1); in animateChangeImpl()
389 newView.setTranslationX(0); in animateChangeImpl()
390 newView.setTranslationY(0); in animateChangeImpl()
/frameworks/base/core/java/com/android/internal/widget/
DDefaultItemAnimator.java352 final View newView = newHolder != null ? newHolder.itemView : null; in animateChangeImpl() local
377 if (newView != null) { in animateChangeImpl()
378 final ViewPropertyAnimator newViewAnimation = newView.animate(); in animateChangeImpl()
389 newView.setAlpha(1); in animateChangeImpl()
390 newView.setTranslationX(0); in animateChangeImpl()
391 newView.setTranslationY(0); in animateChangeImpl()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java379 KeyguardSecurityView newView = getSecurityView(securityMode); in showSecurityScreen() local
387 newView.onResume(KeyguardSecurityView.VIEW_REVEALED); in showSecurityScreen()
388 newView.setKeyguardCallback(mCallback); in showSecurityScreen()
404 securityMode != SecurityMode.None && newView.needsInput()); in showSecurityScreen()
/frameworks/ex/common/java/com/android/common/widget/
DCompositeCursorAdapter.java400 view = newView(mContext, partition, cursor, position, parent); in getView()
410 protected abstract View newView(Context context, int partition, Cursor cursor, int position, in newView() method in CompositeCursorAdapter
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
DSuggestionsAdapter.java242 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in SuggestionsAdapter
243 final View v = super.newView(context, cursor, parent); in newView()
453 View v = newView(mContext, mCursor, parent); in getView()
/frameworks/opt/chips/src/com/android/ex/chips/
DRecipientAlternatesAdapter.java592 convertView = mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES); in getView()
614 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in RecipientAlternatesAdapter
615 return mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES); in newView()
DDropdownChipLayouter.java202 public View newView(AdapterType type) { in newView() method in DropdownChipLayouter
/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
DDeviceDiscoveryService.java310 : newView(); in getView()
333 private TextView newView() { in newView() method in DeviceDiscoveryService.DevicesAdapter
/frameworks/ex/common/tests/src/com/android/common/widget/
DCompositeCursorAdapterTest.java58 protected View newView(Context context, int sectionIndex, Cursor cursor, int position, in newView() method in CompositeCursorAdapterTest.TestCompositeCursorAdapter
/frameworks/ex/widget/java/com/android/ex/widget/
DStaggeredGridView.java765 View newView = obtainView(position, child); in layoutChildren() local
766 if (newView != child) { in layoutChildren()
768 addView(newView, i); in layoutChildren()
769 child = newView; in layoutChildren()
/frameworks/base/core/java/android/animation/
DLayoutTransition.java731 private void runChangeTransition(final ViewGroup parent, View newView, final int changeReason) { in runChangeTransition() argument
776 if (child != newView) { in runChangeTransition()
/frameworks/ex/common/java/com/android/common/contacts/
DBaseEmailAddressAdapter.java314 protected View newView(Context context, int partitionIndex, Cursor cursor, in newView() method in BaseEmailAddressAdapter
/frameworks/support/core-ui/api/
Dcurrent.txt318 …method public abstract android.view.View newView(android.content.Context, android.database.Cursor,…
472 …method public android.view.View newView(android.content.Context, android.database.Cursor, android.…
D26.0.0.txt318 …method public abstract android.view.View newView(android.content.Context, android.database.Cursor,…
472 …method public android.view.View newView(android.content.Context, android.database.Cursor, android.…
/frameworks/support/v7/appcompat/src/android/support/v7/app/
DAlertController.java1005 public View newView(Context context, Cursor cursor, ViewGroup parent) { in createListView()

123