Questions tagged [window-soft-input-mode]

117 questions
1
vote
1 answer

Soft keypad popsup and hides slowly in fragment and makes typing sluggish

I am using [SlidingMenu][1] in my app. I use Viewpager to show three fragments in tabs in a fragment. Three fragments have EditTexts inside LinearLayouts which are in ScrollView. So My XML XMl is like this:…
1
vote
1 answer

Android: How to push whole activity without resize, pan when soft keyboard is shown

I have one activity.it has one vertical linearlayout. When the soft keyboard opens, it pushes linearlayout with resize or pan. But I want to chop the top part of linearlayout and push it. 'adjustResize' and 'adjustPan' are different from what I…
1
vote
1 answer

Android onscreen button not visible with software keyboard

I have sort of a login fragment, on top of which is a "back" button (a text view) and under it is a scroll view with text inputs. When i click on one of them the keyboard appears and shifts everything upwards. However, i want the back button to be…
Squeazer
  • 1,234
  • 1
  • 14
  • 33
1
vote
1 answer

Adapting component when virtual keyboard appears

I'm designing a simple login activity. I've used the following xml layout:
1
vote
0 answers

how to block UI from coming up on softkeyboard display

I am using same activity for multiple fragments. every fragment there is a searchview. Except home fragment in all other fragment we display listviews. In home fragment i have linear layouts to display some buttons and footer view. And when i type…
andro-girl
  • 7,989
  • 22
  • 71
  • 94
0
votes
0 answers

How to keep custom dialog design when softinputmode change like keyboard open/close?

I have designed custom dialog with the help of ConstraintLayout and EditText using DialogFragment in android. It is working fine. But issue only with Android version 11. When I open the dialog look fine but when keyboard open and close. View…
0
votes
1 answer

bringIntoViewRequester not working as expected

I have the following code: Column( modifier = modifier .padding(start = 30.dp, end = 30.dp, bottom = 30.dp) .verticalScroll(rememberScrollState()), verticalArrangement = Arrangement.spacedBy(10.dp), horizontalAlignment =…
0
votes
0 answers

How do I manage keyboard overlaps in jetpack compose?

I am trying to achieve keyboard overlaps issue in jetpack compose kotlin. I searched and tried something on the internet but I couldnt solve it with those options. I added my manifest…
0
votes
0 answers

Android. How to resize window to make room for view when keyboard already showing?

I have screen with search view at the top and RecyclerView (parent is ScrollView). When search result is empty I'm showing TextView with text "Nothing found". The problem is that the text is covered by the keyboard. I'm using ADJUST_RESIZE and when…
0
votes
1 answer

Android: Adjust the buttons above soft keyboard on clicking edittext

I am trying to adjust the softkeyboard right below the image buttons, but it covers the image buttons which does not makes it clickable . I want the buttons to be right above the softkeyboard when the user clicks on the edittext. I have tried using…
0
votes
0 answers

why windowSoftInputMode doesn't work with constraint layout?

This is more like the general information question that I am asking I tried to implement windowSoftinputMode="adjustResize" mode in constraint layout but it doesn't work for it at all I tried to search for a constraint layout example but there is no…
0
votes
0 answers

Edit Text inside scroll view is hidden behind keyboard when keyboard is visible

I have some views inside a nested scroll view one of the view is a resusable layout which contains an edit text, when I click on the edit text the view scrolls a bit up but not enough to show the edit text, the only way to see the edit text is to…
0
votes
0 answers

AdjustResize in RecyclerView not working as expected, hiding EditText below keyboard since API 30 (targetSdkVersion 30)

In recyclerview, I am using item view which has an ImageView and an EditText(caption below the image). Until I updated targetSdkVersion to 30, everything worked well. And then I changed nothing but the targetSdkVersion from '29' to '30', and now…
0
votes
0 answers

Minimise keyboard while going android app to background

When app goes to background then keyboard should be minimise instead of hide. I also tried to get Menu device button click listener but it is also not able to get.
0
votes
1 answer

windowSoftInputMode without squeezing layout

I have made a sign in a layout that looks as follows: The xml is as follows:
Ben
  • 1,737
  • 2
  • 30
  • 61