Softkeyboad Autocorrection field overlaps EditText - android

So, when you open the keyboard and it overlaps the EditText you clicked into, the whole Screen moves up so the EditText is just above the Keyboard. This does work for me however as I said, it moves so it is just above the keyboard but above the keyboard is also this field for the autocorrection and this field overlaps the EditText. How can I fix this?

Related

Android - focus an input textfield inside a webview

I have a problem to focus an input textfield inside a webview. In the webview a text input field is shown. If you click inside, the keyboard opens and the navigationbar is shown as required. The problem is, that the keyboard hides the input textfield. You can enter the text but you don´t see the input, until you scroll down.
Is there a way to resize the webview so the input text field is shown or to automatically scroll to the textfield?
The immersive mode (for usability reasons - required) is used, so I can´t set the windwoSoftInputMode flag to adjustResize.

How to disable soft keypad always for TextInputLayout EditText in Android?

Am using this fro hiding the keypad for EdtitText.
contributionMonth.setInputType(InputType.TYPE_NULL);
This is working fine when I directly touch the EditText box. It doesn't work for some time. My case is when i put some input on another edittext meantime my keypad will be visible, in this meantime
if i entered text to that inputtype null edittext it accepts the input. How to disable the input type as null for always?

Preventing full screen keyboard: pull up EditText so it is visible

I have a horizontal only, full screen activity in my android app. In this activity, I need to disable full screen keyboard in some EditText elements so that the user can see the EditText while typing.
I disabled the full screen keyboard by adding following to EditText xml.
android:imeOptions="flagNoExtractUi"
When I touch the EditText for the fist time to enter text into it, the screen gets pulled up (keyboard comes up from bottom) so that EditText is visible while typing. After entering text and closing the keyboard, while the EditText is still having focus, if I touched it again to do some correction to the text entered, it doesn't get pulled up as it did before (Edit text is covered by keyboard). So I cannot see what is in the text box while typing. I'm not sure whether this is the default behavior since user has no idea what he is typing in this situation.
Is there a some way to get the screen to always pull up so it is visible?
use edittext in ScrollView and android:fillViewport="true" on the ScrollView. That's the better solution.

how move an editText further up when sof keyboard opens?

I have a editText control in my Android View.
The soft keyboard is opened when the user click on the editText, but then the keyboard covers half of the editText.
How can I move the editText a few pixels up?
I have used
android:windowSoftInputMode="stateVisible|adjustResize"
already.
I just want to adjust it further up a bit.

adjustPan: set the view to pan to

I have a popup that has a multi-line edit text and can appear at arbitrary position atop my application. Currently I have implemented it as a transparent activity. When the keyboard is shown over the popup, it jumps up and the current line is shown above the keyboard (I have the adjustPan flag set).
Now, I want the whole popup to go up and show above the keyboard, not only one line of text box. I was able to achieve this by moving focus to the whole layout when the EditText is focused, but then, well, the EditText loses focus, and I cannot type. Is there any other way way to do this? Or is there a way to focus a view without losing focus on another?

Categories

Resources