Home
last modified time | relevance | path

Searched refs:oldView (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPseudoGridView.java179 View oldView = null; in refresh() local
181 oldView = viewGroup.getChildAt(i); in refresh()
183 View newView = mAdapter.getView(i, oldView, viewGroup); in refresh()
184 if (oldView == null) { in refresh()
187 } else if (oldView != newView) { in refresh()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationRoundnessManager.java102 for (Roundable oldView : oldViews) { in setViewsAffectedBySwipe()
103 oldView.requestRoundnessReset(DISMISS_ANIMATION); in setViewsAffectedBySwipe()
H A DNotificationStackScrollLayout.java5379 EmptyShadeView oldView = mEmptyShadeView; in inflateEmptyShadeView() local
5391 oldView == null ? R.string.empty_shade_text : oldView.getTextResource(), in inflateEmptyShadeView()
5392 oldView == null ? 0 : oldView.getFooterTextResource(), in inflateEmptyShadeView()
5393 oldView == null ? 0 : oldView.getFooterIconResource()); in inflateEmptyShadeView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcherController.java278 View oldView = null; in refreshUserList() local
280 oldView = mListView.getChildAt(i); in refreshUserList()
283 mAdapter.getView(i, oldView, mListView); in refreshUserList()
303 if (oldView == null) { in refreshUserList()
306 } else if (oldView != newView) { in refreshUserList()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentInflater.java825 final RemoteViews oldView) { in canReapplyRemoteView() argument
826 return (newView == null && oldView == null) || in canReapplyRemoteView()
827 (newView != null && oldView != null in canReapplyRemoteView()
828 && oldView.getPackage() != null in canReapplyRemoteView()
830 && newView.getPackage().equals(oldView.getPackage()) in canReapplyRemoteView()
831 && newView.getLayoutId() == oldView.getLayoutId() in canReapplyRemoteView()
832 && !oldView.hasFlags(RemoteViews.FLAG_REAPPLY_DISALLOWED)); in canReapplyRemoteView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DSideFpsController.kt121 field?.let { oldView ->
122 val lottie = oldView.requireViewById(R.id.sidefps_animation) as LottieAnimationView
124 windowManager.removeView(oldView)
H A DUdfpsController.java1007 final UdfpsView oldView = mOverlay.getOverlayView(); in hideUdfpsOverlay() local
1008 if (oldView != null) { in hideUdfpsOverlay()
1009 onFingerUp(mOverlay.getRequestId(), oldView); in hideUdfpsOverlay() local
/aosp14/frameworks/base/core/java/android/transition/
H A DTransition.java1753 View oldView = oldInfo.view; in playTransition() local
1754 TransitionValues startValues = getTransitionValues(oldView, true); in playTransition()
1755 TransitionValues endValues = getMatchedTransitionValues(oldView, true); in playTransition()
1757 endValues = mEndValues.viewValues.get(oldView); in playTransition()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityContainerController.java1040 getCurrentSecurityController(oldView -> oldView.onPause()); in showSecurityScreen()