Home
last modified time | relevance | path

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

/packages/services/DeviceAsWebcam/src/com/android/DeviceAsWebcam/view/
DZoomController.java74 private View mTouchOverlay; field in ZoomController
171 mTouchOverlay = findViewById(R.id.zoom_ui_overlay); in init()
187 mTouchOverlay.setOnTouchListener((v, event) -> { in init()
196 mTouchOverlay.setOnClickListener(v -> { in init()
201 mTouchOverlay.setOnLongClickListener(v -> { in init()
429 if (mTouchOverlay == null) { in onAccessibilityServicesEnabled()
437 mTouchOverlay.setVisibility(View.GONE); in onAccessibilityServicesEnabled()
440 mTouchOverlay.setVisibility(View.VISIBLE); in onAccessibilityServicesEnabled()
/packages/apps/Car/RotaryController/src/com/android/car/rotary/
DRotaryService.java386 @Nullable private FrameLayout mTouchOverlay; field in RotaryService
931 mTouchOverlay = new FrameLayout(getWindowContext()); in addTouchOverlay()
935 mTouchOverlay.setLayoutParams(frameLayoutParams); in addTouchOverlay()
936 mTouchOverlay.setOnTouchListener((view, event) -> { in addTouchOverlay()
955 windowManager.addView(mTouchOverlay, windowLayoutParams); in addTouchOverlay()
959 if (mTouchOverlay != null) { in removeTouchOverlay()
961 windowManager.removeView(mTouchOverlay); in removeTouchOverlay()
962 mTouchOverlay = null; in removeTouchOverlay()