ShineButton icon indicating copy to clipboard operation
ShineButton copied to clipboard

Animation doesn't work when FLAG_LAYOUT_NO_LIMITS is enabled

Open ShreyAmbesh opened this issue 7 years ago • 0 comments

When I enable FLAG_LAYOUT_NO_LIMITS the animation stops but when I disable it works.

Code to enable FLAG_LAYOUT_NO_LIMITS :- Window window = getWindow(); window.setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS,WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);

Code to disable FLAG_LAYOUT_NO_LIMITS :- window.clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);

ShreyAmbesh avatar Sep 21 '18 17:09 ShreyAmbesh