views:

37

answers:

1

whenever I click on the EditText, the screen readjusts and the edittext-view moves up. But this is not enough and the soft-keyboard still covers the view to not show what a user typing.

My layout is as follows:

A listview occupying 65% of screen height, followed by an editetxt view and a button

LISTVIEW


______________________________
EDITTEXT              |BUTTON 
______________________________

My activity has the following flag set android:windowSoftInputMode="stateAlwaysHidden|adjustPan"

A: 

Read about something like that just recently. Is this what you are looking for? http://www.vogella.de/blog/2010/10/25/android-windowsoftinputmode/

Fredrik
I tried with the adustReSize flag but to no avail.
frieza