Home
last modified time | relevance | path

Searched refs:newView (Results 1 – 25 of 59) 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.java385 View newView = existingView; in applyRemoteView()
387 newView = newContentView.apply( in applyRemoteView()
399 onViewApplied(newView); in applyRemoteView()
530 static boolean canReapplyRemoteView(final RemoteViews newView, in canReapplyRemoteView() argument
532 return (newView == null && oldView == null) || in canReapplyRemoteView()
533 (newView != null && oldView != null in canReapplyRemoteView()
535 && newView.getPackage() != null in canReapplyRemoteView()
536 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()
537 && 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/support/cursoradapter/src/main/java/androidx/cursoradapter/widget/
DCursorAdapter.java270 v = newView(mContext, mCursor, parent); in getView()
303 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); in newView() method in CursorAdapter
314 return newView(context, cursor, parent); in newDropDownView()
DResourceCursorAdapter.java111 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in ResourceCursorAdapter
/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/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/support/v7/recyclerview/src/main/java/androidx/recyclerview/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/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java378 KeyguardSecurityView newView = getSecurityView(securityMode); in showSecurityScreen() local
386 newView.onResume(KeyguardSecurityView.VIEW_REVEALED); in showSecurityScreen()
387 newView.setKeyguardCallback(mCallback); in showSecurityScreen()
403 securityMode != SecurityMode.None && newView.needsInput()); in showSecurityScreen()
/frameworks/support/cursoradapter/api/
Dcurrent.txt19 …method public abstract android.view.View newView(android.content.Context, android.database.Cursor,…
32 …method public android.view.View newView(android.content.Context, android.database.Cursor, android.…
/frameworks/support/cursoradapter/api_legacy/
D0.0.0.txt19 …method public abstract android.view.View newView(android.content.Context, android.database.Cursor,…
32 …method public android.view.View newView(android.content.Context, android.database.Cursor, android.…
Dcurrent.txt19 …method public abstract android.view.View newView(android.content.Context, android.database.Cursor,…
32 …method public android.view.View newView(android.content.Context, android.database.Cursor, android.…
D28.0.0-alpha1.txt19 …method public abstract android.view.View newView(android.content.Context, android.database.Cursor,…
32 …method public android.view.View newView(android.content.Context, android.database.Cursor, android.…
/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/main/java/androidx/appcompat/widget/
DSuggestionsAdapter.java243 public View newView(Context context, Cursor cursor, ViewGroup parent) { in newView() method in SuggestionsAdapter
244 final View v = super.newView(context, cursor, parent); in newView()
454 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.java336 : newView(); in getView()
359 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()

123