How to programmatically scroll a recyclerview over keyboard?











up vote
0
down vote

favorite












I have a recyclerview in which there is an edit text where it will hidden and opens up on click of some button.
Please refer to screen 1.



On click of reject or accept the view is displayed:



on click of reject or accept the view is displayed



Now, my recyclerview is expanding downwards but I want it to expand upward like this:



By default, it expands downward:



by default, it expands downward



I want it to expand upward like this:



I want it to expand upward like this



Similarly, when keyboard opens up I want the whole recyclerview cell just above the keyboard like this.



By default, it does not move upward:



by default, it does not move upward



I want something like this:



I want something like this



What should be the approach for this functionality?

Do I have to do the calculations of cell height, keyboard height or is there some other method for this.



Please attach related links.

Thanks










share|improve this question




























    up vote
    0
    down vote

    favorite












    I have a recyclerview in which there is an edit text where it will hidden and opens up on click of some button.
    Please refer to screen 1.



    On click of reject or accept the view is displayed:



    on click of reject or accept the view is displayed



    Now, my recyclerview is expanding downwards but I want it to expand upward like this:



    By default, it expands downward:



    by default, it expands downward



    I want it to expand upward like this:



    I want it to expand upward like this



    Similarly, when keyboard opens up I want the whole recyclerview cell just above the keyboard like this.



    By default, it does not move upward:



    by default, it does not move upward



    I want something like this:



    I want something like this



    What should be the approach for this functionality?

    Do I have to do the calculations of cell height, keyboard height or is there some other method for this.



    Please attach related links.

    Thanks










    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have a recyclerview in which there is an edit text where it will hidden and opens up on click of some button.
      Please refer to screen 1.



      On click of reject or accept the view is displayed:



      on click of reject or accept the view is displayed



      Now, my recyclerview is expanding downwards but I want it to expand upward like this:



      By default, it expands downward:



      by default, it expands downward



      I want it to expand upward like this:



      I want it to expand upward like this



      Similarly, when keyboard opens up I want the whole recyclerview cell just above the keyboard like this.



      By default, it does not move upward:



      by default, it does not move upward



      I want something like this:



      I want something like this



      What should be the approach for this functionality?

      Do I have to do the calculations of cell height, keyboard height or is there some other method for this.



      Please attach related links.

      Thanks










      share|improve this question















      I have a recyclerview in which there is an edit text where it will hidden and opens up on click of some button.
      Please refer to screen 1.



      On click of reject or accept the view is displayed:



      on click of reject or accept the view is displayed



      Now, my recyclerview is expanding downwards but I want it to expand upward like this:



      By default, it expands downward:



      by default, it expands downward



      I want it to expand upward like this:



      I want it to expand upward like this



      Similarly, when keyboard opens up I want the whole recyclerview cell just above the keyboard like this.



      By default, it does not move upward:



      by default, it does not move upward



      I want something like this:



      I want something like this



      What should be the approach for this functionality?

      Do I have to do the calculations of cell height, keyboard height or is there some other method for this.



      Please attach related links.

      Thanks







      android android-layout android-recyclerview recycler-adapter recyclerview-layout






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 days ago









      Kling Klang

      32.1k156287




      32.1k156287










      asked 2 days ago









      ganeshraj020794

      85




      85
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote













          I wrote this for my chat class you can rewrite this code snippet according to yours.



          private boolean keyboardShown(View rootView) {

          final int softKeyboardHeight = 100;
          Rect r = new Rect();
          rootView.getWindowVisibleDisplayFrame(r);
          DisplayMetrics dm = rootView.getResources().getDisplayMetrics();
          int heightDiff = rootView.getBottom() - r.bottom;
          return heightDiff > softKeyboardHeight * dm.density;
          }

          messageEditText.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
          @Override
          public void onGlobalLayout() {
          if (keyboardShown(messageEditText.getRootView())) {
          Log.d("keyboard", "keyboard UP");

          if (keyboardUp == false) {
          if (results.size() > 0)
          chatList.smoothScrollToPosition(results.size()+1);
          keyboardUp = true;
          }

          } else {
          Log.d("keyboard", "keyboard Down");
          keyboardUp = false;
          }
          }
          });





          share|improve this answer








          New contributor




          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • didn't work out. can you please explain me the approach?
            – ganeshraj020794
            2 days ago


















          up vote
          0
          down vote













          Let's divide the question into two, scroll down the RecyclerView and show the cell when the keyboard is shown.




          1. just use the scrollToPosition(index) with to the cell index



          2. you can just change the android:windowSoftInputMode to be adjustSize in the activity:



            <activity
            android:windowSoftInputMode="adjustResize"
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>





          or just in the fragment:



                  window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)





          share|improve this answer





















          • android:windowSoftInputMode="adjustResize" not working
            – ganeshraj020794
            2 days ago











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373667%2fhow-to-programmatically-scroll-a-recyclerview-over-keyboard%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          I wrote this for my chat class you can rewrite this code snippet according to yours.



          private boolean keyboardShown(View rootView) {

          final int softKeyboardHeight = 100;
          Rect r = new Rect();
          rootView.getWindowVisibleDisplayFrame(r);
          DisplayMetrics dm = rootView.getResources().getDisplayMetrics();
          int heightDiff = rootView.getBottom() - r.bottom;
          return heightDiff > softKeyboardHeight * dm.density;
          }

          messageEditText.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
          @Override
          public void onGlobalLayout() {
          if (keyboardShown(messageEditText.getRootView())) {
          Log.d("keyboard", "keyboard UP");

          if (keyboardUp == false) {
          if (results.size() > 0)
          chatList.smoothScrollToPosition(results.size()+1);
          keyboardUp = true;
          }

          } else {
          Log.d("keyboard", "keyboard Down");
          keyboardUp = false;
          }
          }
          });





          share|improve this answer








          New contributor




          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • didn't work out. can you please explain me the approach?
            – ganeshraj020794
            2 days ago















          up vote
          1
          down vote













          I wrote this for my chat class you can rewrite this code snippet according to yours.



          private boolean keyboardShown(View rootView) {

          final int softKeyboardHeight = 100;
          Rect r = new Rect();
          rootView.getWindowVisibleDisplayFrame(r);
          DisplayMetrics dm = rootView.getResources().getDisplayMetrics();
          int heightDiff = rootView.getBottom() - r.bottom;
          return heightDiff > softKeyboardHeight * dm.density;
          }

          messageEditText.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
          @Override
          public void onGlobalLayout() {
          if (keyboardShown(messageEditText.getRootView())) {
          Log.d("keyboard", "keyboard UP");

          if (keyboardUp == false) {
          if (results.size() > 0)
          chatList.smoothScrollToPosition(results.size()+1);
          keyboardUp = true;
          }

          } else {
          Log.d("keyboard", "keyboard Down");
          keyboardUp = false;
          }
          }
          });





          share|improve this answer








          New contributor




          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • didn't work out. can you please explain me the approach?
            – ganeshraj020794
            2 days ago













          up vote
          1
          down vote










          up vote
          1
          down vote









          I wrote this for my chat class you can rewrite this code snippet according to yours.



          private boolean keyboardShown(View rootView) {

          final int softKeyboardHeight = 100;
          Rect r = new Rect();
          rootView.getWindowVisibleDisplayFrame(r);
          DisplayMetrics dm = rootView.getResources().getDisplayMetrics();
          int heightDiff = rootView.getBottom() - r.bottom;
          return heightDiff > softKeyboardHeight * dm.density;
          }

          messageEditText.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
          @Override
          public void onGlobalLayout() {
          if (keyboardShown(messageEditText.getRootView())) {
          Log.d("keyboard", "keyboard UP");

          if (keyboardUp == false) {
          if (results.size() > 0)
          chatList.smoothScrollToPosition(results.size()+1);
          keyboardUp = true;
          }

          } else {
          Log.d("keyboard", "keyboard Down");
          keyboardUp = false;
          }
          }
          });





          share|improve this answer








          New contributor




          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          I wrote this for my chat class you can rewrite this code snippet according to yours.



          private boolean keyboardShown(View rootView) {

          final int softKeyboardHeight = 100;
          Rect r = new Rect();
          rootView.getWindowVisibleDisplayFrame(r);
          DisplayMetrics dm = rootView.getResources().getDisplayMetrics();
          int heightDiff = rootView.getBottom() - r.bottom;
          return heightDiff > softKeyboardHeight * dm.density;
          }

          messageEditText.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
          @Override
          public void onGlobalLayout() {
          if (keyboardShown(messageEditText.getRootView())) {
          Log.d("keyboard", "keyboard UP");

          if (keyboardUp == false) {
          if (results.size() > 0)
          chatList.smoothScrollToPosition(results.size()+1);
          keyboardUp = true;
          }

          } else {
          Log.d("keyboard", "keyboard Down");
          keyboardUp = false;
          }
          }
          });






          share|improve this answer








          New contributor




          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer






          New contributor




          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 2 days ago









          Taha wakeel

          212




          212




          New contributor




          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Taha wakeel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • didn't work out. can you please explain me the approach?
            – ganeshraj020794
            2 days ago


















          • didn't work out. can you please explain me the approach?
            – ganeshraj020794
            2 days ago
















          didn't work out. can you please explain me the approach?
          – ganeshraj020794
          2 days ago




          didn't work out. can you please explain me the approach?
          – ganeshraj020794
          2 days ago












          up vote
          0
          down vote













          Let's divide the question into two, scroll down the RecyclerView and show the cell when the keyboard is shown.




          1. just use the scrollToPosition(index) with to the cell index



          2. you can just change the android:windowSoftInputMode to be adjustSize in the activity:



            <activity
            android:windowSoftInputMode="adjustResize"
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>





          or just in the fragment:



                  window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)





          share|improve this answer





















          • android:windowSoftInputMode="adjustResize" not working
            – ganeshraj020794
            2 days ago















          up vote
          0
          down vote













          Let's divide the question into two, scroll down the RecyclerView and show the cell when the keyboard is shown.




          1. just use the scrollToPosition(index) with to the cell index



          2. you can just change the android:windowSoftInputMode to be adjustSize in the activity:



            <activity
            android:windowSoftInputMode="adjustResize"
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>





          or just in the fragment:



                  window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)





          share|improve this answer





















          • android:windowSoftInputMode="adjustResize" not working
            – ganeshraj020794
            2 days ago













          up vote
          0
          down vote










          up vote
          0
          down vote









          Let's divide the question into two, scroll down the RecyclerView and show the cell when the keyboard is shown.




          1. just use the scrollToPosition(index) with to the cell index



          2. you can just change the android:windowSoftInputMode to be adjustSize in the activity:



            <activity
            android:windowSoftInputMode="adjustResize"
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>





          or just in the fragment:



                  window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)





          share|improve this answer












          Let's divide the question into two, scroll down the RecyclerView and show the cell when the keyboard is shown.




          1. just use the scrollToPosition(index) with to the cell index



          2. you can just change the android:windowSoftInputMode to be adjustSize in the activity:



            <activity
            android:windowSoftInputMode="adjustResize"
            android:name=".MainActivity"
            android:label="@string/app_name">
            <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>





          or just in the fragment:



                  window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          Yosef

          14127




          14127












          • android:windowSoftInputMode="adjustResize" not working
            – ganeshraj020794
            2 days ago


















          • android:windowSoftInputMode="adjustResize" not working
            – ganeshraj020794
            2 days ago
















          android:windowSoftInputMode="adjustResize" not working
          – ganeshraj020794
          2 days ago




          android:windowSoftInputMode="adjustResize" not working
          – ganeshraj020794
          2 days ago


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53373667%2fhow-to-programmatically-scroll-a-recyclerview-over-keyboard%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          Npm cannot find a required file even through it is in the searched directory

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith