Disable animation resizing on Android

I have an Activity whose size does not fill the entire screen. His background is darkened. I want to enter full screen mode with the click of a button. It works great with Window LayoutParams. But during resizing, an animation happens that I want to get rid of.

Using Window.setWindowAnimations (int resId) only affects the animation when the window appears or disappears, and not when resized. How to change this animation?

thanks

+6
source share
1 answer

Try:

overridePendingTransition(0, 0); 
0
source

Source: https://habr.com/ru/post/953736/


All Articles