Android Keyboard
when i click on edittext, keyboard appears.but the keyboard hides my view.how to resolve this.
is it possible show my view 开发者_运维百科completely when key board appears.
Take a look at the android:windowSoftInputMode property of the activity tag.
In your manifest add this line:
<activity
android:name=".YourActivity"
android:windowSoftInputMode="adjustPan">
</Activity>
WindowSOftInput adjust your view while softkeyboard up in android.
精彩评论