mirror of https://github.com/readrops/Readrops.git
Add adapter listener to set the list to the top when inserting new items
This commit is contained in:
parent
5aded28681
commit
287abcafc0
|
@ -168,7 +168,12 @@ public class MainActivity extends AppCompatActivity implements SimpleCallback, S
|
|||
}
|
||||
}).attachToRecyclerView(recyclerView);
|
||||
|
||||
|
||||
adapter.registerAdapterDataObserver(new RecyclerView.AdapterDataObserver() {
|
||||
@Override
|
||||
public void onItemRangeInserted(int positionStart, int itemCount) {
|
||||
recyclerView.scrollToPosition(0);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private void updateList() {
|
||||
|
|
Loading…
Reference in New Issue