I have edittext inside recyclerview item and I want scroll recyclerview item above to keyboard when user click on edittext which is inside the recyclerview row. I saw same in Instagram feed list but I am not able achieve like Instagram. Check Instagram screenshot what I am going to achieve.
[enter image description here][1]KeyboardUtils.registerSoftInputChangedListener(getActivity(), new KeyboardUtils.OnSoftInputChangedListener() {
@Override
public void onSoftInputChanged(int height) {
enter image description here
recyclerViewPostList.smoothScrollBy(0, height);
}
});