Searched refs:oldView (Results 1 – 9 of 9) 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 | 102 for (Roundable oldView : oldViews) { in setViewsAffectedBySwipe() 103 oldView.requestRoundnessReset(DISMISS_ANIMATION); in setViewsAffectedBySwipe()
|
D | NotificationStackScrollLayout.java | 5449 EmptyShadeView oldView = mEmptyShadeView; in inflateEmptyShadeView() local 5460 view.setVisible(oldView != null && oldView.isVisible(), /* animate = */ false); in inflateEmptyShadeView() 5462 oldView == null ? R.string.empty_shade_text : oldView.getTextResource(), in inflateEmptyShadeView() 5463 oldView == null ? 0 : oldView.getFooterTextResource(), in inflateEmptyShadeView() 5464 oldView == null ? 0 : oldView.getFooterIconResource()); in inflateEmptyShadeView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationRowContentBinderImpl.kt | 822 oldView = remoteViewCache.getCachedView(entry, FLAG_CONTENT_VIEW_CONTRACTED) in <lambda>() 865 oldView = in <lambda>() 910 oldView = in <lambda>() 954 oldView = remoteViewCache.getCachedView(entry, FLAG_CONTENT_VIEW_PUBLIC) in <lambda>() 998 oldView = in <lambda>() 1037 oldView = in <lambda>() 1554 fun canReapplyRemoteView(newView: RemoteViews?, oldView: RemoteViews?): Boolean { in <lambda>() 1555 return newView == null && oldView == null || in <lambda>() 1557 oldView != null && in <lambda>() 1558 oldView.getPackage() != null && in <lambda>() [all …]
|
D | NotificationContentInflater.java | 1043 final RemoteViews oldView) { 1044 return (newView == null && oldView == null) || 1045 (newView != null && oldView != null 1046 && oldView.getPackage() != null 1048 && newView.getPackage().equals(oldView.getPackage()) 1049 && newView.getLayoutId() == oldView.getLayoutId() 1050 && !oldView.hasFlags(RemoteViews.FLAG_REAPPLY_DISALLOWED));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyguardUserSwitcherController.java | 279 View oldView = null; in refreshUserList() local 281 oldView = mListView.getChildAt(i); in refreshUserList() 284 mAdapter.getView(i, oldView, mListView); in refreshUserList() 304 if (oldView == null) { in refreshUserList() 307 } else if (oldView != newView) { in refreshUserList()
|
/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/systemui/biometrics/ |
D | UdfpsController.java | 882 final View oldView = mOverlay.getTouchOverlay(); in hideUdfpsOverlay() local 883 if (oldView != null) { in hideUdfpsOverlay() 884 onFingerUp(mOverlay.getRequestId(), oldView); in hideUdfpsOverlay() local
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSecurityContainerController.java | 1060 getCurrentSecurityController(oldView -> oldView.onPause()); in showSecurityScreen()
|