Searched refs:oldView (Results 1 - 15 of 15) sorted by relevance

/frameworks/av/packages/MediaComponents/src/com/android/widget/
H A DVideoViewInterface.java37 * Takes over oldView. It means that the MediaPlayer2 will start rendering on this view.
38 * The visibility of oldView will be set as {@link View.GONE}. If the view doesn't have a
44 * @param oldView The view that MediaPlayer2 is currently rendering on.
46 void takeOver(@NonNull VideoViewInterface oldView); argument
H A DVideoSurfaceView.java93 public void takeOver(@NonNull VideoViewInterface oldView) { argument
95 ((View) oldView).setVisibility(GONE);
103 mOldView = oldView;
H A DVideoTextureView.java98 public void takeOver(@NonNull VideoViewInterface oldView) { argument
100 ((View) oldView).setVisibility(GONE);
108 mOldView = oldView;
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl/
H A DVideoViewInterface.java38 * Takes over oldView. It means that the MediaPlayer will start rendering on this view.
39 * The visibility of oldView will be set as {@link View.GONE}. If the view doesn't have a
45 * @param oldView The view that MediaPlayer is currently rendering on.
47 void takeOver(@NonNull VideoViewInterface oldView); argument
H A DVideoSurfaceView.java83 public void takeOver(@NonNull VideoViewInterface oldView) { argument
85 ((View) oldView).setVisibility(GONE);
93 mOldView = oldView;
H A DVideoTextureView.java83 public void takeOver(@NonNull VideoViewInterface oldView) { argument
85 ((View) oldView).setVisibility(GONE);
93 mOldView = oldView;
/frameworks/support/media-widget/src/main/java/androidx/media/widget/impl_with_mp1/
H A DVideoViewInterfaceWithMp1.java38 * Takes over oldView. It means that the MediaPlayer will start rendering on this view.
39 * The visibility of oldView will be set as {@link View.GONE}. If the view doesn't have a
45 * @param oldView The view that MediaPlayer is currently rendering on.
47 void takeOver(@NonNull VideoViewInterfaceWithMp1 oldView); argument
H A DVideoSurfaceViewWithMp1.java82 public void takeOver(@NonNull VideoViewInterfaceWithMp1 oldView) { argument
84 ((View) oldView).setVisibility(GONE);
92 mOldView = oldView;
H A DVideoTextureViewWithMp1.java83 public void takeOver(@NonNull VideoViewInterfaceWithMp1 oldView) { argument
85 ((View) oldView).setVisibility(GONE);
93 mOldView = oldView;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPseudoGridView.java176 View oldView = null;
178 oldView = viewGroup.getChildAt(i);
180 View newView = mAdapter.getView(i, oldView, viewGroup);
181 if (oldView == null) {
184 } else if (oldView != newView) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardUserSwitcher.java209 View oldView = null;
211 oldView = mUserSwitcher.getChildAt(i);
213 View newView = mAdapter.getView(i, oldView, mUserSwitcher);
214 if (oldView == null) {
217 } else if (oldView != newView) {
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityContainer.java377 KeyguardSecurityView oldView = getSecurityView(mCurrentSecuritySelection);
381 if (oldView != null) {
382 oldView.onPause();
383 oldView.setKeyguardCallback(mNullCallback); // ignore requests from old view
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationInflater.java526 * @param oldView The old view that was applied to the existing view before
531 final RemoteViews oldView) {
532 return (newView == null && oldView == null) ||
533 (newView != null && oldView != null
534 && oldView.getPackage() != null
536 && newView.getPackage().equals(oldView.getPackage())
537 && newView.getLayoutId() == oldView.getLayoutId()
538 && !oldView.isReapplyDisallowed());
530 canReapplyRemoteView(final RemoteViews newView, final RemoteViews oldView) argument
/frameworks/base/core/java/android/transition/
H A DTransition.java1754 View oldView = oldInfo.view;
1755 TransitionValues startValues = getTransitionValues(oldView, true);
1756 TransitionValues endValues = getMatchedTransitionValues(oldView, true);
1758 endValues = mEndValues.viewValues.get(oldView);
/frameworks/support/transition/src/main/java/androidx/transition/
H A DTransition.java1794 View oldView = oldInfo.mView;
1795 TransitionValues startValues = getTransitionValues(oldView, true);
1796 TransitionValues endValues = getMatchedTransitionValues(oldView, true);

Completed in 276 milliseconds