I have some Spinner
in my fragment, but since i need to do this
val window = requireActivity().window
window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS)
the spinner doesn't find a bottom edge, so the list of items goes off the screen.
I founded this answer that seems to fix my problem, but I'm new to android I don't understand how to implement it: https://stackoverflow.com/a/34763942/15566249
Any suggestions?