Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/
H A DWindowMagnificationSettings.java96 private LinearLayout mSettingView; field in WindowMagnificationSettings
159 mSettingView.post(() -> { in WindowMagnificationSettings()
298 return mSettingView; in getSettingView()
320 mWindowManager.removeView(mSettingView); in hideSettingPanel()
394 mSettingView.announceForAccessibility( in showSettingPanel()
488 mSettingView.requestLayout(); in updateUIControlsIfNeeded()
502 mSettingView.setFocusable(true); in inflateView()
503 mSettingView.setFocusableInTouchMode(true); in inflateView()
545 if (mSettingView.isAttachedToWindow() in inflateView()
682 mSettingView.post(() -> { in setSystemGestureExclusion()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/
H A DWindowMagnificationSettingsTest.java83 private ViewGroup mSettingView; field in WindowMagnificationSettingsTest
116 mSettingView = mWindowMagnificationSettings.getSettingView(); in setUp()
117 mZoomSeekbar = mSettingView.findViewById(R.id.magnifier_zoom_slider); in setUp()
259 verify(mWindowManager).removeView(mSettingView); in performClick_editButton_setEditMagnifierSizeMode()
362 mSettingView = mWindowMagnificationSettings.getSettingView(); in seekbarProgress_justInflated_maxValueAndProgressSetCorrectly()
363 mZoomSeekbar = mSettingView.findViewById(R.id.magnifier_zoom_slider); in seekbarProgress_justInflated_maxValueAndProgressSetCorrectly()
510 T view = mSettingView.findViewById(idRes); in getInternalView()