Home
last modified time | relevance | path

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

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationRoundnessManager.java183 ActivatableNotificationView newView = in handleRemovedOldViews() local
186 if (newView == oldView) { in handleRemovedOldViews()
212 ActivatableNotificationView newView = in handleAddedNewViews() local
214 if (newView != null) { in handleAddedNewViews()
217 if (oldView == newView) { in handleAddedNewViews()
224 updateViewWithoutCallback(newView, in handleAddedNewViews()
225 newView.isShown() && !mAnimatedChildren.contains(newView)); in handleAddedNewViews()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/animation/
DStackAnimationControllerTest.java168 final View newView = new FrameLayout(mContext); in testChildAdded() local
170 newView, in testChildAdded()
183 assertEquals(0f, newView.getTranslationX(), .1f); in testChildAdded()
184 assertEquals(500f, newView.getTranslationY(), .1f); in testChildAdded()
185 assertEquals(1f, newView.getScaleX(), .1f); in testChildAdded()
186 assertEquals(1f, newView.getScaleY(), .1f); in testChildAdded()
187 assertEquals(1f, newView.getAlpha(), .1f); in testChildAdded()
DPhysicsAnimationLayoutTestCase.java102 final View newView = new FrameLayout(mContext); in addOneMoreThanBubbleLimitBubbles() local
103 mLayout.addView(newView, 0); in addOneMoreThanBubbleLimitBubbles()
104 mViews.add(0, newView); in addOneMoreThanBubbleLimitBubbles()
106 newView.setTranslationX(0); in addOneMoreThanBubbleLimitBubbles()
107 newView.setTranslationY(0); in addOneMoreThanBubbleLimitBubbles()
DExpandedAnimationControllerTest.java102 final View newView = new FrameLayout(getContext()); in testOnChildAdded() local
103 mLayout.addView(newView, 0); in testOnChildAdded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DAutoSizingList.java96 View newView = mAdapter.getView(i, v, this); in rebindChildren()
97 if (newView != v) { in rebindChildren()
101 addView(newView, i); in rebindChildren()
DPseudoGridView.java176 View newView = mAdapter.getView(i, oldView, viewGroup); in refresh() local
179 viewGroup.addView(newView); in refresh()
180 } else if (oldView != newView) { in refresh()
183 viewGroup.addView(newView, i); in refresh()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflater.java549 View newView = existingView; in applyRemoteView()
551 newView = newContentView.apply( in applyRemoteView()
563 onViewApplied(newView); in applyRemoteView()
710 static boolean canReapplyRemoteView(final RemoteViews newView, in canReapplyRemoteView() argument
712 return (newView == null && oldView == null) || in canReapplyRemoteView()
713 (newView != null && oldView != null in canReapplyRemoteView()
715 && newView.getPackage() != null in canReapplyRemoteView()
716 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()
717 && 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.java292 v = newView(mContext, mCursor, parent); in getView()
326 public abstract View newView(Context context, Cursor cursor, ViewGroup parent); in newView() method in CursorAdapter
337 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.java548 View newView = mAdapter.getView(adapterPosition, null, this); in showOnly() local
556 if (newView != null) { in showOnly()
557 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/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java555 KeyguardSecurityView newView = getSecurityView(securityMode); in showSecurityScreen() local
563 newView.onResume(KeyguardSecurityView.VIEW_REVEALED); in showSecurityScreen()
564 newView.setKeyguardCallback(mCallback); in showSecurityScreen()
579 mCurrentSecurityView = newView; in showSecurityScreen()
581 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/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.java335 : newView(); in getView()
358 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.java733 private void runChangeTransition(final ViewGroup parent, View newView, final int changeReason) { in runChangeTransition() argument
778 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/base/packages/SystemUI/docs/
Dphysics-animation-layout.md89 animationForChild(newView)
/frameworks/base/core/java/com/android/internal/app/
DAlertController.java1180 public View newView(Context context, Cursor cursor, ViewGroup parent) { in createListView()
/frameworks/base/core/java/android/view/
DViewRootImpl.java1239 void setLayoutParams(WindowManager.LayoutParams attrs, boolean newView) { in setLayoutParams() argument
1295 if (newView) { in setLayoutParams()

12