Home
last modified time | relevance | path

Searched refs:windowInsetsController (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/
DSystemUiController.kt202 private val windowInsetsController = window?.let { WindowCompat.getInsetsController(it, view) } in <lambda>() constant in com.android.compose.AndroidSystemUiController
213 darkIcons && windowInsetsController?.isAppearanceLightStatusBars != true -> { in setStatusBarColor()
234 darkIcons && windowInsetsController?.isAppearanceLightNavigationBars != true -> { in setNavigationBarColor()
251 windowInsetsController?.show(WindowInsetsCompat.Type.statusBars())
253 windowInsetsController?.hide(WindowInsetsCompat.Type.statusBars())
264 windowInsetsController?.show(WindowInsetsCompat.Type.navigationBars())
266 windowInsetsController?.hide(WindowInsetsCompat.Type.navigationBars())
271 get() = windowInsetsController?.isAppearanceLightStatusBars == true
273 windowInsetsController?.isAppearanceLightStatusBars = value
277 get() = windowInsetsController?.isAppearanceLightNavigationBars == true
[all …]
/frameworks/base/tests/FlickerTests/test-apps/flickerapp/src/com/android/server/wm/flicker/testapp/
DGameActivity.java65 WindowInsetsControllerCompat windowInsetsController = in hideSystemBars() local
67 if (windowInsetsController == null) { in hideSystemBars()
71 windowInsetsController.setSystemBarsBehavior( in hideSystemBars()
75 windowInsetsController.hide(WindowInsetsCompat.Type.systemBars()); in hideSystemBars()
/frameworks/base/services/tests/InputMethodSystemServerTests/test-apps/SimpleTestIme/src/com/android/apps/inputmethod/simpleime/testing/
DTestActivity.java101 WindowInsetsController windowInsetsController = mEditText.getWindowInsetsController(); in showImeWithWindowInsetsController() local
102 windowInsetsController.show(WindowInsets.Type.ime()); in showImeWithWindowInsetsController()
117 WindowInsetsController windowInsetsController = mEditText.getWindowInsetsController(); in hideImeWithWindowInsetsController() local
118 windowInsetsController.hide(WindowInsets.Type.ime()); in hideImeWithWindowInsetsController()
/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/
DFrontBufferedLayer.kt70 this.windowInsetsController?.setSystemBarsBehavior(WindowInsetsController.BEHAVIOR_DEFAULT) in onAttachedToWindow()
71 this.windowInsetsController?.hide(WindowInsets.Type.navigationBars()) in onAttachedToWindow()
72 this.windowInsetsController?.hide(WindowInsets.Type.statusBars()) in onAttachedToWindow()
/frameworks/base/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/
DImeStressTestUtil.java454 WindowInsetsController windowInsetsController = mEditText.getWindowInsetsController(); in showImeWithWindowInsetsController() local
456 .that(windowInsetsController) in showImeWithWindowInsetsController()
458 windowInsetsController.show(WindowInsets.Type.ime()); in showImeWithWindowInsetsController()
467 WindowInsetsController windowInsetsController = mEditText.getWindowInsetsController(); in hideImeWithWindowInsetsController() local
469 .that(windowInsetsController) in hideImeWithWindowInsetsController()
471 windowInsetsController.hide(WindowInsets.Type.ime()); in hideImeWithWindowInsetsController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/communal/widgets/
DEditWidgetsActivity.kt115 val windowInsetsController = window.decorView.windowInsetsController in <lambda>() constant
116 windowInsetsController?.hide(WindowInsets.Type.systemBars()) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/
DUserSwitcherFullscreenDialog.kt42 window?.decorView?.windowInsetsController?.let { controller -> in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/keyguard/
DKeyguardSecurityContainerControllerTest.kt130 @Mock private lateinit var windowInsetsController: WindowInsetsController in <lambda>() variable in com.android.keyguard.KeyguardSecurityContainerControllerTest
192 whenever(securityViewFlipper.windowInsetsController).thenReturn(windowInsetsController) in <lambda>()
203 whenever(keyguardPasswordView.windowInsetsController).thenReturn(windowInsetsController) in <lambda>()