Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unproportional keyboard on landscape layout Android

I am having EditText in my LinearLayout. When i am typing text in portrait mode keyboard displays fine but when i changed to landscape mode , only i can editext box and a button on right side of it, that looking really bad.

Just i want to look the keyboard same in both modes.

How i achieve that??

Problem is: Keyboard is filling the entire screen am not able to see other views in the screen in landscape when i want to type text..

Thanks

like image 542
Udaykiran Avatar asked Dec 27 '22 17:12

Udaykiran


1 Answers

In layout at landscape, you can set android:imeOptions="actionDone|flagNoExtractUi" for edittext

like image 175
duonghv Avatar answered Jan 10 '23 21:01

duonghv