Searched defs:changedView (Results 1 - 21 of 21) sorted by path

/frameworks/base/core/java/android/app/
H A DActivityView.java134 protected void onVisibilityChanged(View changedView, int visibility) { argument
135 super.onVisibilityChanged(changedView, visibility);
/frameworks/base/core/java/android/view/
H A DTextureView.java395 protected void onVisibilityChanged(View changedView, int visibility) { argument
396 super.onVisibilityChanged(changedView, visibility);
H A DView.java9572 * @param changedView The view whose visibility changed. Could be 'this' or
9574 * @param visibility The new visibility of changedView: {@link #VISIBLE},
9577 protected void dispatchVisibilityChanged(@NonNull View changedView, argument
9579 onVisibilityChanged(changedView, visibility);
9586 * @param changedView The view whose visibility changed. May be
9591 protected void onVisibilityChanged(@NonNull View changedView, @Visibility int visibility) { argument
H A DViewGroup.java1291 protected void dispatchVisibilityChanged(View changedView, int visibility) { argument
1292 super.dispatchVisibilityChanged(changedView, visibility);
1296 children[i].dispatchVisibilityChanged(changedView, visibility);
/frameworks/base/core/java/android/webkit/
H A DWebView.java2505 protected void onVisibilityChanged(View changedView, int visibility) { argument
2506 super.onVisibilityChanged(changedView, visibility);
2510 mProvider.getViewDelegate().onVisibilityChanged(changedView, visibility);
H A DWebViewProvider.java346 public void onVisibilityChanged(View changedView, int visibility); argument
/frameworks/base/core/java/android/widget/
H A DProgressBar.java1591 protected void onVisibilityChanged(View changedView, int visibility) { argument
1592 super.onVisibilityChanged(changedView, visibility);
H A DTextView.java8240 protected void onVisibilityChanged(View changedView, int visibility) { argument
8241 super.onVisibilityChanged(changedView, visibility);
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java857 protected void onVisibilityChanged(View changedView, int visibility) { argument
858 super.onVisibilityChanged(changedView, visibility);
861 if (changedView == this && visibility != VISIBLE
/frameworks/base/core/tests/coretests/src/android/view/
H A DVisibilityCallback.java102 protected void onVisibilityChanged(View changedView, int visibility) { argument
103 mLastVisChangedView = changedView;
/frameworks/base/media/java/android/media/tv/
H A DTvView.java720 protected void onVisibilityChanged(View changedView, int visibility) { argument
721 super.onVisibilityChanged(changedView, visibility);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintContentView.java402 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAnimatedImageView.java100 protected void onVisibilityChanged(View changedView, int vis) { argument
101 super.onVisibilityChanged(changedView, vis);
H A DBackDropView.java54 protected void onVisibilityChanged(View changedView, int visibility) { argument
55 super.onVisibilityChanged(changedView, visibility);
56 if (changedView == this && mOnVisibilityChangedRunnable != null) {
H A DNotificationContentView.java231 protected void onVisibilityChanged(View changedView, int visibility) { argument
232 super.onVisibilityChanged(changedView, visibility);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBottomAreaView.java507 protected void onVisibilityChanged(View changedView, int visibility) { argument
508 super.onVisibilityChanged(changedView, visibility);
509 if (changedView == this && visibility == VISIBLE) {
H A DLockIcon.java66 protected void onVisibilityChanged(View changedView, int visibility) { argument
67 super.onVisibilityChanged(changedView, visibility);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java154 protected void onVisibilityChanged(View changedView, int visibility) { argument
155 super.onVisibilityChanged(changedView, visibility);
/frameworks/support/v4/java/android/support/v4/widget/
H A DDrawerLayout.java1837 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { argument
1839 final int childWidth = changedView.getWidth();
1842 if (checkDrawerViewAbsoluteGravity(changedView, Gravity.LEFT)) {
1848 setDrawerViewOffset(changedView, offset);
1849 changedView.setVisibility(offset == 0 ? INVISIBLE : VISIBLE);
H A DSlidingPaneLayout.java1331 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) { argument
H A DViewDragHelper.java164 * @param changedView View whose position changed
170 public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {} argument

Completed in 424 milliseconds