Scroll RecyclerView up accordingly when keyboard o

2020-03-21 01:54发布

问题:

I have created a chat activity and like facebook messenger, there is an EditText at the bottom and above is the RecyclerView of messages. When Keyboard opens, I want to scroll RecyclerView up exactly how much it should scroll up. To be more specific, lets assume there are 5 messages in the RecyclerView and currently 3rd message is just above the EditText. So when keyboard is open, I want to keep 3rd message just above the EditText like before. I have searched but could not find. If this is a duplicate question, I will be grateful if anyone can provide the link.

回答1:

Late answer but maybe someone will find it useful.

If it is a chat app then I suppose you want to start building the list from the bottom. For example, there is an empty chat and after you add a couple of message you expect them to be at the bottom of the list. Later, as there will be more and more messages, older messages will go up and newer ones will be on the bottom, right above the EditText.

Assuming newest messages are first in your list/array you can just set the LinearLayoutManager to be reverse layout.

layoutManager.reverseLayout = true

I can't explain why but it looks like RecyclerView always tries to retain scroll position of the top border. So when keyboard is shown available vertical space shrinks and RecyclerView will just try to keep its top the same as it was before. By making it reverse layout you can achieve the desired behaviour.



回答2:

recyclerView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
        @Override
        public void onLayoutChange(View view, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
            if ( bottom < oldBottom) {
                recyclerView.postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        recyclerView.scrollToPosition(adapter.getItemCount());
                    }
                }, 100);
            }
        }
    });

if it not work Use smoothScrollToPosition instead of scrollToPosition

This is work for me.



回答3:

I had the same problem and I don't want to set windowSoftInputMode to "adjustResize". The above anwsers do not work for me.

editText.clearFocused();
hideKeyboard();

// update your adapter ... 

parent.requestLayout();

Reset the focus of the parent layout and the recylerView will be updated correctlly.



回答4:

I had the same problem, what I did is when the keyboard opens, I scroll the recyclerView to the last item in the recyclerView, so no items will be hidden. I think this is much easier than the way you were proposing. So the code will be as follows:

  recyclerView.postDelayed(new Runnable() {
            @Override
            public void run() {
                recyclerView.scrollToPosition(recyclerView.getAdapter().getItemCount() - 1);
            }
        }, 300);


回答5:

Write this in your Manifest

    <activity
        android:name=".yourActivity"
        android:windowSoftInputMode="adjustResize" >
    </activity>


回答6:

Try this

LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
linearLayoutManager.scrollToPosition(yourPosition);