Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a few EditText fields in a ListView. When I tap on one of the EditText fields, the keyboard slides into view (as it should), but the EditText field I tapped loses focus. I've tried using various InputMethodManager methods to make the keyboard start out in view (in order to get around the problem rather than truly solve it), but that didn't work - the keyboard was not in view when the Activity appeared.

The EditText's type is number, and when the keyboard is sliding in, it is a number keyboard, but when it finishes sliding and the EditText loses focus, it changes to the alphabetical keyboard (which reinforces the idea that the EditText no longer has focus).

My questions are these:

1) How can I make the selection of my EditText field and the subsequent sliding in of the soft keyboard not make my EditText lose focus?

... failing that...

2) How can I make the keyboard start out in view so it never has to slide in (thus avoiding the behavior I find so objectionable)?

My manifest does include android:windowSoftInputMode="stateAlwaysVisible", but the keyboard does not appear until I tap on an EditText. This ignoring of the 'stateAlwaysVisible' attribute seems to only occur in the emulator - on my provisioned device, it is honored so question number 2 above does work on the device... but not in the emulator.

Thanks for any help you can provide!

share|improve this question
Have you tried with a device that has hardware keyboard? That will probably also happen... i THINK emulador does that because it "has" a hardware keyboard. – NeTeInStEiN May 11 '11 at 13:35
Unfortunately, the only test devices I have access to have soft keyboards. But even if this problem were not to manifest on devices with hardware keyboards (which naturally don't switch between numeric and alpha modes like the soft keyboards do), I'd still want to correct this behavior for all those models that only have soft keyboards. =) – Kyle Humfeld May 11 '11 at 15:39

3 Answers

up vote 3 down vote accepted
+50

This guy had the same problem and more besides. He solved it by using a ScrollView and a LinearLayout instead of a ListView.

share|improve this answer

You need to change in your AndroidManifest.xml

Add android:windowSoftInputMode="adjustPan" in the activity holding the listview. This will solve your problem.

    <activity android:name=".MyEditTextInListView"
              android:label="@string/app_name"
              android:windowSoftInputMode="adjustPan">

Regards

share|improve this answer
4  
This should be the best answer. – Seymour Cakes Mar 6 '12 at 10:41
Indeed it should be. – Adrian Grigore Apr 9 '12 at 15:46
This was too good. It would have taken me at least miles to come to this solution. Thanks so much. – Mohit Sethi Jul 3 '12 at 11:49
1  
Well, it does solve the focus-issue. However, it has one other effect as you might see, the view is no longer resizing. – Kenneth Nov 6 '12 at 6:05
@Kenneth... That is the point of adjustPan. The view doesn't resize. But it "pans" as best it can to put the focused view in a visible area – Justin Dec 17 '12 at 16:59
show 1 more comment

You should test this code on a device with hardware keyboard always visible. The behavior may also happen here.

To avoid this you can have the keyboard always visible.. but that is not very easy as you can see by this thread:

https://groups.google.com/forum/#!topic/android-developers/FyENeEdmYC0

Theoretically you may have to create your own Android keyboard (although using as base the stock Android keyboard) as described here: Android: How to make the keypad always visible?

share|improve this answer
Thanks for the input, but I think I've gotta give the bounty to Martin. I appreciate your advice, though. +1 – Kyle Humfeld May 14 '11 at 0:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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