ChatGPT解决这个技术问题 Extra ChatGPT

Android: How do I prevent the soft keyboard from pushing my view up?

I have a vertical sliding drawer at the bottom of my app. When the soft keyboard opens, it pushes the tab for the drawer up, so it sits atop the keyboard. I actually want it to remain at the bottom of the screen, becoming hidden when the keyboard is shown.

Anyone else run into this issue? Know how to fix it?

hi, I am having same problem which flag you have used in manifest file, can you plz help me with that
This question is duplicated here: stackoverflow.com/questions/5516216/…

W
Watachiaieto

You can simply switch your Activity's windowSoftInputModeflag to adjustPan in your AndroidMainfest.xml file inside your activity tag.

Check the official documentation for more info.

<activity
   ...
   android:windowSoftInputMode="adjustPan"> 
</activity>

If your container is not changing size, then you likely have the height set to "match parent". If possible, set the parent to "Wrap Content", or a constraint layout with constraingts to top and bottom of parent.

The parent container will shrink to fit the available space, so it is likely that your content should be inside of a scolling view to prevent (depending on the phone manufacturer and the layout choosen...)

Content being smashed together Content hanging off the screen Content being inacccessable due to it being underneath the keyboard

even if the layout it is in is a relative or constraint layout, the content could exhibit problems 1-3.


I don't want the view to pan, I want it to remain static where it is, and just have the keyboard cover up whatever it's going to cover up.
By panning it's meant that view will be scrolled to make visible that view which you're typing to. In other words if just appeared keyboard didn't cover up focused view it will remain static.
I am facing the same problem. made the windowSoftInputMode flag to "adjustPan" in manifeast file.but not working . how to solve it
Doesn't help in my case of having a row of buttons on the bottom of the screen and a ScrollView above them. The buttons get pushed up no matter what value is in windowSoftInputMode.
I found that this general method works as long as your activity is not full screen
l
lasec0203

None of the answers worked for me, but this did the trick, add this attribute to the activity tag in your AndroidManifest.xml:

<activity
     ...
   android:windowSoftInputMode="adjustNothing"> 
</activity>

This makes keyboard appear overlaying content, without making layout to recalculate it's height.
This solves the issue of the keyboard pushing the content up though which is what I and the OP wanted to achieve.
borrowing from @Dom you can use getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING); to set this value programmatically
This one does work for me, unlike other answers (jelly bean 4.1)
Perfect! It is also working in my case. I am showing a dialog that has a edittext inside. As soon as dialog opens, keyboard also was appearing. I have tried "adjustPan", but it blocked keyboard appearing feature. So, "adjustNothing" worked better in my case.
d
duggu

In my case, the reason the buttons got pushed up was because the view above them was a ScrollView, and it got collapsed with the buttons pushed up above the keyboard no matter what value of android:windowSoftInputMode I was setting.

I was able to avoid my bottom row of buttons getting pushed up by the soft keyboard by setting android:isScrollContainer="false" on the ScrollView that sits above the buttons.


But in this case the soft keyboard covers part of the screen and there's no way to scroll down. Looks like there is only one way to prevent bottom panel to show up at the top of the keyboard - hiding it when keyboard is open...
this is it! This setting is in my opinion very interesting to remark, as is the only way I have found to achieve the effects of "adjustNothing" missing property!
FYI to everyone, this also applies to elements that contain scrolling behavior, such as listview
Just to add a note, for WebViews you'll also need to add android:windowSoftInputMode="adjustPan"> besides android:isScrollContainer="false"
M
Mr. Ace

You can try to add this attribute dynamically, by putting the following code in the onCreate method of your activity:

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

This worked for me, but that:

android:windowSoftInputMode="adjustPan"

didnt.


Did you added the android:windowSoftInputMode="adjustPan" in AndroidManifest.xml?
No, as it didnt really make any difference for me. The first line of code did the job. :) @HabeebPerwad
I added the seconds line in AndoidManifest.xml file. I think after that only it worked. so just asked.
@Dom, how to use "getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);" in a fragment?
Finally! This works! I had a controller (extends from FragmentActivity) and some views attached to it (the views extend from RelativeLayout). So in the troublesome view i did controller.getWindow()... like you said. Works
a
amalBit

These answers here didn't help me. So I tried this:

android:windowSoftInputMode="adjustResize"

This worked like a charm, Now the header of my app doesn't disappear. Its smoother.


This nearly works perfectly for me. The only problem is that the keyboard's suggestion bar/row still hides my layout. Did you face such an issue?
For those who may face similar issue, it probably was due to TabLayout. The problem was gone once I set its visibility to View.GONE. It might be time to redesign my layout.
This one works without overlap the button at the bottom of my nested scroll view. The "adjustPan" however overlap the bottom button
C
ChaturaM

To do this programatically in a fragment you can use following code

getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

Place this in onResume()


S
Suresh Pattu

This one worked for me

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_NOTHING);

d
duggu

Just a single line to be added...

Add android:windowSoftInputMode="stateHidden|adjustPan" in required activity of your manifest file.

I just got solved :) :)


P
Petro

For future readers.

I wanted specific control over this issue, so this is what I did:

From a fragment or activity, hide your other views (that aren't needed while the keyboard is up), then restore them to solve this problem:

            rootView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout() {
                    Rect r = new Rect();
                    rootView.getWindowVisibleDisplayFrame(r);
                    int heightDiff = rootView.getRootView().getHeight() - (r.bottom - r.top);

                    if (heightDiff > 100) { // if more than 100 pixels, its probably a keyboard...
                    //ok now we know the keyboard is up...
                        view_one.setVisibility(View.GONE);
                        view_two.setVisibility(View.GONE);

                    }else{
                    //ok now we know the keyboard is down...
                        view_one.setVisibility(View.VISIBLE);
                        view_two.setVisibility(View.VISIBLE);

                    }
                }
            });

@Skynet You're absolutely right! This was a custom solution that I used for my own problem.
Hey, this was brilliant. However, the instance the keyboard is closed, there is a short period (milliseconds) where the view is switched to visible. So instead of setting the visibility directly, I used view.post(Runnable runnable) and set the visibility from there. It turned out great for me
@Andrew I switched to Flutter and couldn't be happier, the code is much cleaner too
Yeah, this will be my last android project for ever. After that I will switch to iOS or just stop programming apps at all. This is hideous.
@Andrew Adobe XD has an export to Flutter function, check it out... might make your life easier
M
Michael McDowell

So far the answers didn't help me as I have a button and a textInput field (side by side) below the textView which kept getting hidden by the keyboard, but this has solved my issue:

android:windowSoftInputMode="adjustResize"

T
Tushar patel

For xamarin users add this code to Activity attribute of the MainActivity class,

WindowSoftInputMode =Android.Views.SoftInput.AdjustNothing

or you can add this code Window.SetSoftInputMode(Android.Views.SoftInput.AdjustNothing) to the OnCreate method of MainActivity class.


J
Jaiprakash Soni

This was the best which worked for me

android:windowSoftInputMode="adjustNothing"

Try it!


J
Jose Kurian

Add following code to the 'activity' of Manifest file.

android:windowSoftInputMode="adjustResize"

This works well. However, just to advice, it doesn´t work well when you use percent. Because it readjust some elements. So, if you have Constraints elements with percent you will have problem. Use wrap_content instead and it will works very well.
J
JoeG
android:windowSoftInputMode="stateHidden|adjustNothing"

This code works.


I think android:windowSoftInputMode="stateHidden|adjustPan" should also work.
A
Ali Nawaz

Well i have watched these answers but in my case i fell into the same issue and got refuge through a very handy and easiest solution that involves putting a very small innocent attribute in your Scrollview tag residing in your xml file. That is

android:isScrollContainer="false"

Good luck!


Z
Zoe stands with Ukraine
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

This one is working for me.


M
MILLION GASHAW

I have solved my issue by adding

 android:windowSoftInputMode="adjustNothing" 

In manifest file add.

and making the Recyclerviews constraint isScrollContainer to false .

android:isScrollContainer="false"

a
arghtype

Try to use this:

android:windowSoftInputMode="stateHidden|adjustPan"

d
duggu

For Scroll View:

if after adding android:windowSoftInputMode="stateHidden|adjustPan" in your Android Manifest and still does not work.

It may be affected because when the keyboard appears, it will be into a scroll view and if your button/any objects is not in your scroll view then the objects will follow the keyboard and move its position.

Check out your xml where your button is and make sure it is under your scroll View bracket and not out of it.

Hope this helps out. :D


B
Bö macht Blau

In my case I needed the keyboard to stay hidden and just after the click of the button my layout needs to be adjusted, so I just added this command in the manifest and it got super right.

android:windowSoftInputMode="stateHidden|adjustResize"

P
Petro

When you want to hide view when open keyboard.

Add this into your Activity in manifest file

android:windowSoftInputMode="stateHidden|adjustPan"

S
Saljith Kj

None of them worked for me, try this one

 private void scrollingWhileKeyboard() {
    drawerlayout.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {

            Rect r = new Rect();
            try {
                drawerlayout.getWindowVisibleDisplayFrame(r);
                int screenHeight = drawerlayout.getRootView().getHeight();
                int keypadHeight = screenHeight - r.bottom;
                if (keypadHeight > screenHeight * 0.15) {
                    tabLayout.setVisibility(View.GONE);
                } else {
                    tabLayout.setVisibility(View.VISIBLE);
                }
            } catch (NullPointerException e) {

            }
        }
    });

}

J
Johan Fick

I was struggling for a while with this problem. Some of the solutions worked however some of my views where still being pushed up while others weren't... So it didn't completely solve my problem. In the end, what did the job was adding the following line of code to my manifest in the activity tag...

android:windowSoftInputMode="stateHidden|adjustPan|adjustResize"

Good luck


u
user3243900

The activity's main window will not resize to make room for the soft keyboard. Rather, the contents of the window will be automatically panned so that the current focus is never obscured by the keyboard and users can always see what they are typing.

android:windowSoftInputMode="adjustPan"

This might be a better solution for what you desired.


R
Radouane ROUFID

This code may help you. Use it in your oncreate method.

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

I tried this but I am having issues where the view cuts off a bit of the bottom part of the view and pushes the view to overlay the time above? Any ideas on what layout changes or what is needed? stackoverflow.com/questions/39909897/…
M
Manohar

Include in your manifest file under activity which you want to display .But make sure not using Full screen Activity

android:windowSoftInputMode="adjustPan"

J
Juan Mendez

@manifest in your activity:

android:windowSoftInputMode="stateAlwaysHidden|adjustPan"

R
Ramzan

There are two ways of solving this problem. Go to the AndroidManifist.xml, and in the name of your activity, add this line

   android:windowSoftInputMode="adjustPan"

As in the below code, I have added to the Register Activity.

 <activity android:name=".Register"
            android:windowSoftInputMode="adjustPan">

In the second way, go to your activity, and in your onCreate method, add this code.

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);