Adding new item to the top of the RecyclerView
问题 I am adding an item to recyclerview position 0 programamticly public void addQuestion(Question question){ this.questionList.add(0, question); notifyItemInserted(0); } This is working very well and the items do appear in the list at top BUT the user has to scroll up to see the new item. Is there any trick how the item appear at top and recyclerview is scrolling up automaticly ? 回答1: well you can use mRecyclerView.smoothScrollToPosition(int position) Example: public void addQuestion(Question