mirror of
https://github.com/readrops/Readrops.git
synced 2025-02-02 19:56:50 +01:00
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…
x
Reference in New Issue
Block a user