I have an Activity
with a RelativeLayout
in which i have a FrameLayout
where i load diferent Fragments
and a bottom aligned layout with buttons.
In a Fragment
i load i have a ScrollView
and i want to scroll the Fragment
till the end but i want the Activity
to maintain its layout so the bottom aligned layout will not be shown above keyboard.
I tried everything and neighter combination seems to work.
So i think that there should be 2 types of adjustments for 2 different views, the activity shouldn't be adjusting and the fragment inside should be something like adjustNothing
/adjustPan
, is this possible?
To help you understand better, its like Instagram, bottom menu, scroll and shown keyboard.
Hope I'd made myself clear for you to understand.
Thank you.
LE: I know a solution would be to listen for when the softkeyboard is shown and make the bottom layout invisible, but thats not what I'm looking for.