# App/Android(JAVA)

[안드로이드 스튜디오] RecyclerView 위로 스크롤하기

1
2
3
4
5
6
7
                //즉각 
                LinearLayoutManager mlayoutManager = (LinearLayoutManager) mRecyclerView.getLayoutManager();
                mlayoutManager.scrollToPositionWithOffset(00);
 
 
                 //부드럽게 올라가는거
                mRecyclerView.smoothScrollToPosition(0);
cs


728x90