Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android soft keyboard resize layout

When the virtual keyboard opens, it resizes my layout. How can i made for put the keyboard on my layout? And what it doesn't re-size my layout?

like image 509
Corentin Derbois Avatar asked Jul 20 '11 16:07

Corentin Derbois


People also ask

How do I change the soft keyboard on my Android?

What to Know. Go to Settings > System > Languages & input. Tap Virtual keyboard and choose your keyboard. You can switch between keyboards by selecting the keyboard icon at the bottom of most keyboard apps.

How do you move the layout up when the soft keyboard is shown Android?

Sometimes, you need to change the layout when the soft keyboard appeared on the screen. You can fix this by adding a line of code into the AndroidManifest. xml file within the relevant activity section.

What is soft keyboard in Android?

The soft keyboard (also called the onscreen keyboard) is the main input method on Android devices, and almost every Android developer needs to work with this component at some point.


1 Answers

You can use manifest flags to configure the effect of the virtual keyboard. See http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft

like image 69
Nathan Fig Avatar answered Oct 04 '22 01:10

Nathan Fig