开发者

Android Keyboard

开发者 https://www.devze.com 2023-01-17 15:26 出处:网络
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:

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消