[android-developers] Re: EditText lose focus when appears keyboard in ListView

2010-05-19 Thread MarcoAndroid
I had the same problem: http://groups.google.com/group/android-developers/browse_thread/thread/4883b7021b1a7724/f120bf311c5b81af I just tried to answer that thread but it isn't possible anymore it seems. Therefore, below what I typed in as the answer: -

[android-developers] Re: EditText lose focus when appears keyboard in ListView

2010-05-19 Thread Ondra Zahradnik
Try to set windowSoftInputMode to adjustPan in activity declaration in AndroidManifest.xml as follows: ... ... It should help give your activity better user experience. Check http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html for more info about it. -- You