Home
last modified time | relevance | path

Searched refs:mTargetView (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DBorderAnimator.java112 mBorderAnimationParams.mTargetView.invalidate(); in updateOutline()
197 @NonNull final View mTargetView; field in BorderAnimator.BorderAnimationParams
214 mTargetView = targetView; in BorderAnimationParams()
236 mTargetView.invalidate(); in onShowBorder()
238 mTargetView.addOnLayoutChangeListener(mLayoutChangeListener); in onShowBorder()
245 mTargetView.removeOnLayoutChangeListener(mLayoutChangeListener); in onHideBorder()
308 float width = mTargetView.getWidth(); in onShowBorder()
309 float height = mTargetView.getHeight(); in onShowBorder()
315 mTargetView.setPivotX(width / 2); in onShowBorder()
316 mTargetView.setPivotY(height / 2); in onShowBorder()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/
DDragViewStateAnnouncer.java34 private final View mTargetView; field in DragViewStateAnnouncer
37 mTargetView = view; in DragViewStateAnnouncer()
41 mTargetView.setContentDescription(msg); in announce()
42 mTargetView.removeCallbacks(this); in announce()
43 mTargetView.postDelayed(this, TIMEOUT_SEND_ACCESSIBILITY_EVENT); in announce()
47 mTargetView.removeCallbacks(this); in cancel()
52 mTargetView.sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_SELECTED); in run()
57 Launcher launcher = Launcher.getLauncher(mTargetView.getContext()); in completeAction()