ShineButton
ShineButton copied to clipboard
Animation doesn't work when FLAG_LAYOUT_NO_LIMITS is enabled
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);