Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationRoundnessManager.java97 for (Roundable oldView : oldViews) { in setViewsAffectedBySwipe()
98 oldView.requestRoundnessReset(DISMISS_ANIMATION); in setViewsAffectedBySwipe()
DNotificationStackScrollLayout.java5734 EmptyShadeView oldView = mEmptyShadeView; in inflateEmptyShadeView() local
5745 view.setVisible(oldView != null && oldView.isVisible(), /* animate = */ false); in inflateEmptyShadeView()
5747 oldView == null ? R.string.empty_shade_text : oldView.getTextResource(), in inflateEmptyShadeView()
5748 oldView == null ? 0 : oldView.getFooterTextResource(), in inflateEmptyShadeView()
5749 oldView == null ? 0 : oldView.getFooterIconResource()); in inflateEmptyShadeView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DNotificationRowContentBinderImpl.kt981oldView = remoteViewCache.getCachedView(entry, FLAG_CONTENT_VIEW_CONTRACTED), in <lambda>()
1020 oldView = remoteViewCache.getCachedView(entry, FLAG_CONTENT_VIEW_EXPANDED), in <lambda>()
1059 oldView = remoteViewCache.getCachedView(entry, FLAG_CONTENT_VIEW_HEADS_UP), in <lambda>()
1098 oldView = remoteViewCache.getCachedView(entry, FLAG_CONTENT_VIEW_PUBLIC), in <lambda>()
1139 oldView = in <lambda>()
1181 oldView = in <lambda>()
1719 fun canReapplyRemoteView(newView: RemoteViews?, oldView: RemoteViews?): Boolean { in <lambda>()
1720 return newView == null && oldView == null || in <lambda>()
1722 oldView != null && in <lambda>()
1723 oldView.getPackage() != null && in <lambda>()
[all …]
DNotificationContentInflater.java1179 final RemoteViews oldView) {
1180 return (newView == null && oldView == null) ||
1181 (newView != null && oldView != null
1182 && oldView.getPackage() != null
1184 && newView.getPackage().equals(oldView.getPackage())
1185 && newView.getLayoutId() == oldView.getLayoutId()
1186 && !oldView.hasFlags(RemoteViews.FLAG_REAPPLY_DISALLOWED));
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DUdfpsController.java849 final View oldView = mOverlay.getTouchOverlay(); in hideUdfpsOverlay() local
850 if (oldView != null) { in hideUdfpsOverlay()
851 onFingerUp(mOverlay.getRequestId(), oldView); in hideUdfpsOverlay() local
/frameworks/base/core/java/android/transition/
DTransition.java1757 View oldView = oldInfo.view; in playTransition() local
1758 TransitionValues startValues = getTransitionValues(oldView, true); in playTransition()
1759 TransitionValues endValues = getMatchedTransitionValues(oldView, true); in playTransition()
1761 endValues = mEndValues.viewValues.get(oldView); in playTransition()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainerController.java1129 getCurrentSecurityController(oldView -> oldView.onPause()); in showSecurityScreen()