Issue
I want to add android:windowSoftInputMode="adjustPan" only to recycler view.
When I add it into the manifest file it adds it to everything which I don't want.
When I add the line of code in the recycler view it doesn't work.
Solution
Simply use below code, don't need to define anything in AndroidManifest file.
(recyclerView.getLayoutManager() as LinearLayoutManager).stackFromEnd = true
Answered By - Umesh
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.