How to make softinput cover the screen bottom?

72 Views Asked by At

Now one of my layout with edittext align in the bottom ,when the edittext is clicked,the whole page moved up and make room for the softinput; But I just want the bottom layout moved up,the solution is ?

2

There are 2 best solutions below

1
On

Suppose you have a stack of Ten plates. You Put another plate at the botton, number eleven plate, I mean. Do you really think only th eplate number ten willmove, and not the others? Seriously?

0
On

You probably have to make a change to your manifest file: I use this one to let the soft keyboard appear and making the rest of the view scrollable:

<activity 
            android:name=".GroupProperties"
            android:windowSoftInputMode="stateHidden|adjustResize"
            android:label="@string/groepsleden_toevoegen"
            >
        </activity>

Depending on your layout you might also use

android:windowSoftInputMode="adjustPan">