I use this code to show the overlay layout in my app. In android 8.0 "Oreo" it crashes
WindowManager.LayoutParams playerParams = new WindowManager.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT,
WindowManager.LayoutParams.TYPE_SYSTEM_ERROR,
WindowManager.LayoutParams.FLAG_FULLSCREEN,
PixelFormat.TRANSLUCENT);
I found that this TYPE_SYSTEM_ERROR is deprecated in O. Is there any other way to show the layout.