monInspiration
Lurker
I have to create several windows in AccessibilityService. I'm doing it now with next code:
WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE); wm.addView(view,params);
But the creating\removing windows needs 800-1000ms for creating simple window for now. I've already tried adding WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, but it didn't help.
Maybe there is some tips\tools to make it faster?
WindowManager wm = (WindowManager) getSystemService(WINDOW_SERVICE); wm.addView(view,params);
But the creating\removing windows needs 800-1000ms for creating simple window for now. I've already tried adding WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED, but it didn't help.
Maybe there is some tips\tools to make it faster?