I have a layout that is full screen needed for some custom scrolling & custom background on the action bar.
I have a RelativeLayout with a FrameLayout (match_parent for width, wrap_content for height) at the top left and a RelativeLayout at the bottom left. I set the activity to adjustPan. I have an EditText in the bottom-left RelativeLayout. The EditText moves up when it has focus & the keyboard appears. BUT, its RelativeLayout parent does not full scroll up and is partially hidden on the bottom by the keyboard. I want to make sure the entire parent layout is visible just above the keyboard.
How do I accomplish that?
Things I've tried: stateVisible|adjustResize, just adjustResize, messed with isScrollContainer (both true & false) on the parent layout and others up the view hierarchy. All without success.
Environment: Android Studio 1.0.2 on Mac OS X 10.10, Using ActionBarActivity, testing on API 21, but min API 14.