The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/android: fixed forced applied alpha=0.8 window after Android S

authored by

SeungHoon Han and committed by
Ryan Pavlik
a594d6d8 a2f5e5f1

+2 -4
+1 -2
src/xrt/auxiliary/android/src/main/java/org/freedesktop/monado/auxiliary/MonadoView.java
··· 146 146 // 1. Navigation bar won't go away because view gets focus. 147 147 // 2. Underlying activity lost focus and cannot receive input. 148 148 lp.flags = WindowManager.LayoutParams.FLAG_FULLSCREEN | 149 - WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | 150 - WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE; 149 + WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE; 151 150 } 152 151 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) { 153 152 lp.layoutInDisplayCutoutMode =
+1 -2
src/xrt/ipc/android/src/main/java/org/freedesktop/monado/ipc/SurfaceManager.kt
··· 212 212 @Suppress("DEPRECATION") 213 213 private const val VIEW_FLAG_NOT_FOCUSABLE = 214 214 WindowManager.LayoutParams.FLAG_FULLSCREEN or 215 - WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE or 216 - WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE 215 + WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE 217 216 } 218 217 } 219 218