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

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DAutoSizingList.java86 View newView = mAdapter.getView(i, v, this);
87 if (newView != v) {
91 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/v4/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.java252 v = newView(mContext, mCursor, parent);
285 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); method in class:CursorAdapter
296 return newView(context, cursor, parent);
301 * @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.java210 View newView = mAdapter.getView(i, oldView, mUserSwitcher);
213 mUserSwitcher.addView(newView);
214 } else if (oldView != newView) {
217 mUserSwitcher.addView(newView, i);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityContainer.java372 KeyguardSecurityView newView = getSecurityView(securityMode);
380 newView.onResume(KeyguardSecurityView.VIEW_REVEALED);
381 newView.setKeyguardCallback(mCallback);
397 securityMode != SecurityMode.None && newView.needsInput());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java343 final View newView = newHolder != null ? newHolder.itemView : null;
368 if (newView != null) {
369 final ViewPropertyAnimatorCompat newViewAnimation = ViewCompat.animate(newView);
380 ViewCompat.setAlpha(newView, 1);
381 ViewCompat.setTranslationX(newView, 0);
382 ViewCompat.setTranslationY(newView, 0);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSuggestionsAdapter.java243 public View newView(Context context, Cursor cursor, ViewGroup parent) { method in class:SuggestionsAdapter
244 final View v = super.newView(context, cursor, parent);
453 View v = newView(mContext, mCursor, parent);
/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.java721 * @param newView The view being added to or removed from the parent. May be null if the
727 private void runChangeTransition(final ViewGroup parent, View newView, final int changeReason) { argument
772 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/base/core/java/com/android/internal/app/
H A DAlertController.java1080 public View newView(Context context, Cursor cursor, ViewGroup parent) {
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java920 public View newView(Context context, Cursor cursor, ViewGroup parent) {
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java888 void setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) { argument
944 if (newView) {

Completed in 7034 milliseconds