(ui) fix bug that when we comeback from the Composer , there is no update of the view

This commit is contained in:
torrentcome 2017-07-07 12:32:04 +02:00
commit 42d94633cf
2 changed files with 16 additions and 1 deletions

View file

@ -59,6 +59,11 @@ public class SavedTootAdapter extends RecyclerView.Adapter {
return list.size();
}
public void setItems(List<TootEntity> newToot) {
list = new ArrayList<>();
list.addAll(newToot);
}
public void addItems(List<TootEntity> newToot) {
int end = list.size();
list.addAll(newToot);