Searched refs:oldView (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | PseudoGridView.java | 179 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/ |
D | NotificationRoundnessManager.java | 97 for (Roundable oldView : oldViews) { in setViewsAffectedBySwipe() 98 oldView.requestRoundnessReset(DISMISS_ANIMATION); in setViewsAffectedBySwipe()
|
D | NotificationStackScrollLayout.java | 5734 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/ |
D | NotificationRowContentBinderImpl.kt | 981 … oldView = 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 …]
|
D | NotificationContentInflater.java | 1179 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/ |
D | UdfpsController.java | 849 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/ |
D | Transition.java | 1757 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/ |
D | KeyguardSecurityContainerController.java | 1129 getCurrentSecurityController(oldView -> oldView.onPause()); in showSecurityScreen()
|