I add an element for recyclerview position 0 programamticly
public void addQuestion(Question question){ this.questionList.add(0, question); notifyItemInserted(0); }
This works very well and the items are listed up, but the user must scroll up to see the new item.
Is there a trick, how does an element appear on top, and does recyclerview automatically scroll?
source share