In my Android application running in a XOOM device, when I click in an Edittext the keyboard opens and hides the Actionbar. I don't want this to happen, how can I solve this? This is done by the Google Contacts app for the tablet for example.

EDIT: I have several edittexts in which the user needs fo fill. At first, when the user clicked on one edittext on the bottom, the keyboard showed up and hide the edittext in which the user was typing, so he couldn't see what he was typing. I found it really bad, and to solve it I just added to the manifest: android:windowSoftInputMode="stateVisible|adjustPan" But after that, now the screen adjust itselfs and hides the action bar.

The Google Contacts app does the same, but it magically doesn't hide the Action bar. How do they do it?

link|improve this question

show use your menu.xml – Ovidiu Latcu Nov 22 '11 at 14:51
did you try to add android:imeOptions="flagNoExtractUi" (or EditText.setImeOptions(...)) to this EditText – Selvin Nov 22 '11 at 14:54
@Selvin it didn't solve the issue. I just updated the question. – Paulo Barros Nov 22 '11 at 15:00
feedback

2 Answers

up vote 2 down vote accepted

Use adjustResize instead of adjustPan. The framework will always try to keep the focused element on-screen by scrolling any parent views if necessary.

If your EditText field is not nested in some sort of scrolling container such as a ScrollView then your layout may be too tall to completely display when the keyboard resizes your activity. Try wrapping your form's layout in a ScrollView. This will also allow your app's content to scroll if it is running on a smaller screen device where it may have similar issues.

link|improve this answer
But I dont't want to resize it. It's no problem for me to hide some content. The only content thats needs to be on the screen is the selected edittext and the actionbar. Just like the Google Contacts does. How do they do it? – Paulo Barros Nov 28 '11 at 12:13
They do it by using adjustResize. :) If you are having trouble with the keyboard obscuring your content (and you will on some devices with different screen sizes or taller keyboards) then you really do want the resizing behavior. This lets you use scrolling containers to keep the activity content accessible with the keyboard open. – adamp Nov 28 '11 at 19:41
Thank you. I needed both adjustResize and a scrollview together. – Paulo Barros Nov 29 '11 at 10:24
feedback

Try to set on your <item> inside menu.xml:

 android:showAsAction="always"
link|improve this answer
The problem is that is hides the whole action bar, not a item from the action bar. The action bar gets pushed to the top of the screen, where the user can't see it. – Paulo Barros Nov 23 '11 at 8:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.