I’m using ActionBarSherlock. windowSoftInputMode is adjustPan (I’ve tried with adjustResize and adjustNothing also).
I want to keep ActionBar on screen when keyboard appears but slide my layout instead (so text remains visible).
Here is how it looks right:

And when keyboard is appeared:

Question is: how can I keep ActionBar visible while using adjustPan (so EditTexts will always be visible)?
NOTE
I can’t use ScrollView to hold my View
I find out, that there may be problems with
adjustResize(for some reason it’s just usesadjustPaninstead) when you applyingFLAG_FULLSCREENtoWindowofActivity:Without this line resizing working just fine.