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

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DAutoSizingList.java95 View newView = mAdapter.getView(i, v, this);
96 if (newView != v) {
100 addView(newView, i);
H A DPseudoGridView.java180 View newView = mAdapter.getView(i, oldView, viewGroup);
183 viewGroup.addView(newView);
184 } else if (oldView != newView) {
187 viewGroup.addView(newView, i);
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DResourceCursorAdapter.java107 * @see android.widget.CursorAdapter#newView(android.content.Context,
111 public View newView(Context context, Cursor cursor, ViewGroup parent) { method in class:ResourceCursorAdapter
H A DCursorAdapter.java269 v = newView(mContext, mCursor, parent);
302 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); method in class:CursorAdapter
313 return newView(context, cursor, parent);
318 * @param view Existing view, returned earlier by newView
/frameworks/base/core/java/android/widget/
H A DResourceCursorAdapter.java130 * @see android.widget.CursorAdapter#newView(android.content.Context,
134 public View newView(Context context, Cursor cursor, ViewGroup parent) { method in class:ResourceCursorAdapter
H A DCursorAdapter.java285 v = newView(mContext, mCursor, parent);
319 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); method in class:CursorAdapter
330 return newView(context, cursor, parent);
335 * @param view Existing view, returned earlier by newView
H A DAdapterViewAnimator.java545 View newView = mAdapter.getView(adapterPosition, null, this);
553 if (newView != null) {
554 fl.addView(newView);
H A DSuggestionsAdapter.java284 public View newView(Context context, Cursor cursor, ViewGroup parent) { method in class:SuggestionsAdapter
285 final View v = super.newView(context, cursor, parent);
495 View v = newView(mContext, mCursor, parent);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcher.java213 View newView = mAdapter.getView(i, oldView, mUserSwitcher);
216 mUserSwitcher.addView(newView);
217 } else if (oldView != newView) {
220 mUserSwitcher.addView(newView, i);
/frameworks/base/core/java/com/android/internal/widget/
H A DDefaultItemAnimator.java352 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/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java351 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);
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityContainer.java379 KeyguardSecurityView newView = getSecurityView(securityMode);
387 newView.onResume(KeyguardSecurityView.VIEW_REVEALED);
388 newView.setKeyguardCallback(mCallback);
404 securityMode != SecurityMode.None && newView.needsInput());
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationInflater.java352 View newView = existingView;
354 newView = newContentView.apply(
366 onViewApplied(newView);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSuggestionsAdapter.java242 public View newView(Context context, Cursor cursor, ViewGroup parent) { method in class:SuggestionsAdapter
243 final View v = super.newView(context, cursor, parent);
453 View v = newView(mContext, mCursor, parent);
/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/
H A DDeviceDiscoveryService.java310 : newView();
333 private TextView newView() { method in class:DeviceDiscoveryService.DevicesAdapter
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java400 view = newView(mContext, partition, cursor, position, parent);
410 protected abstract View newView(Context context, int partition, Cursor cursor, int position, method in class:CompositeCursorAdapter
/frameworks/ex/common/tests/src/com/android/common/widget/
H A DCompositeCursorAdapterTest.java58 protected View newView(Context context, int sectionIndex, Cursor cursor, int position, method in class:CompositeCursorAdapterTest.TestCompositeCursorAdapter
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java765 View newView = obtainView(position, child);
766 if (newView != child) {
768 addView(newView, i);
769 child = newView;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientAlternatesAdapter.java592 convertView = mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES);
614 public View newView(Context context, Cursor cursor, ViewGroup parent) { method in class:RecipientAlternatesAdapter
615 return mDropdownChipLayouter.newView(AdapterType.RECIPIENT_ALTERNATES);
H A DDropdownChipLayouter.java202 public View newView(AdapterType type) { method in class:DropdownChipLayouter
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java725 * @param newView The view being added to or removed from the parent. May be null if the
731 private void runChangeTransition(final ViewGroup parent, View newView, final int changeReason) { argument
776 if (child != newView) {
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java314 protected View newView(Context context, int partitionIndex, Cursor cursor, method in class:BaseEmailAddressAdapter
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java1007 public View newView(Context context, Cursor cursor, ViewGroup parent) {
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java1103 public View newView(Context context, Cursor cursor, ViewGroup parent) {
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java982 void setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) { argument
1038 if (newView) {

Completed in 555 milliseconds