Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to fix a bottom relative layout when soft keyboard comes?

Tags:

android

When i write something on the edit text in my app ,the soft keyboard comes in along with a bottom relative layout..I want to fix the bottom relative layout position fixed.Any help will be greatly appreciated..

like image 273
hacker Avatar asked Jan 02 '12 10:01

hacker


People also ask

How to fix Windows 10 keyboard layout problems?

There are some possible ways to make this problem solved. For sure, you can using Windows keyboard layout options to temporary disable some layouts, but it will take you much time to open settings dialog, change settings and then close dialog and do this every time you will need a layout again.

What are the advantages of using different keyboard layouts?

Using various keyboard layouts is a great way to save your time and type in a various languages, but don't waste your time typing the same twice or switching between layouts, learn this aspect carefully and use short keys suggested by Windows to be professional about keyboard layouts.

What is the difference between linearlayout and relativelayout?

I've realized that RelativeLayout are the layouts that span thru all available space and are then resized when the keyboard pops up. And LinearLayout are layouts that don't get resized in the resizing process. That's why you need to have 1 RelativeLayout immediately after ScrollView to span thru all available screen space.

How to fix “bottom overflowed” error when the keyboard opens in flutter?

Another solution is to wrap the Column widget into a scrollable widget. A built-in widget provided by Flutter which works well is the SingleChildScrollView. This is the best solution to avoid the “Bottom overflowed ” error when the keyboard opens.


1 Answers

I'm guessing Padma Kumar meant android:windowSoftInputMode="adjustNothing" on your manifest activity tag.

like image 92
Herrera Avatar answered Oct 01 '22 03:10

Herrera