Обновите RecyclerView, сохраняя его положение прокрутки
Как сохранить текущую позицию прокрутки в RecyclerView
после обновления содержимого?
в onCreate
Я поставил задачу повторить следующее:
private void setRepeatingAsyncTask() {
final Handler handler = new Handler();
Timer timer = new Timer();
TimerTask task = new TimerTask() {
@Override
public void run() {
handler.post(new Runnable() {
public void run() {
try {
new getArrivals().execute(station_id);
} catch (Exception e) {
// error, do something
}
}
});
}
};
timer.schedule(task, 0, 30000); // interval of 30 seconds
}
AsyncTask
запросит базу данных о последнем содержимом списка:
private class getArrivals extends AsyncTask<Long, Void, Long>{
@Override
protected void onPreExecute(){
//emptyMessage.setVisibility(VISIBLE);
//recyclerView.setVisibility(GONE);
}
@Override
protected Long doInBackground(Long... params) {
long station_id = params[0];
station = db.stationModel().getStationById(station_id);
arrivals = db.arrivalModel().getNextArrivalsByStation(station_id, StaticClass.getDays());
return station_id;
}
@Override
protected void onPostExecute(Long result){
if(getSupportActionBar() != null) {
getSupportActionBar().setTitle(capitalize(station.name));
}
refreshList();
}
}
После завершения задачи я затем призываю обновить список:
private void refreshList(){
arrivalListAdapter = new ArrivalListAdapter(getApplicationContext(), arrivals);
staggeredGridLayoutManager = new StaggeredGridLayoutManager(1, StaggeredGridLayoutManager.VERTICAL);
recyclerView.setLayoutManager(staggeredGridLayoutManager);
recyclerView.setAdapter(arrivalListAdapter);
Log.d("arrivals", arrivals.size()+"");
arrivalListAdapter.notifyDataSetChanged();
if(arrivals.size() == 0){
emptyMessage.setVisibility(VISIBLE);
recyclerView.setVisibility(GONE);
new fetchArrivalsFromSource().execute(station.id);
}else{
emptyMessage.setVisibility(GONE);
recyclerView.setVisibility(VISIBLE);
}
}
Я уверен, что причина моей проблемы в том, что я устанавливаю адаптер каждый раз. Я попытался установить это с начальной задачей, но это приводит к тому, что список вообще не обновляется.
1 ответ
Решение
Вы можете получить текущую позицию, обновить адаптер и плавно прокрутить до предыдущей позиции следующим образом:
RecyclerView.SmoothScroller smoothScroller = new LinearSmoothScroller(context) {
@Override protected int getVerticalSnapPreference() {
return LinearSmoothScroller.SNAP_TO_START;
}
};
Затем установите положение для прокрутки до:
smoothScroller.setTargetPosition(position);
layoutManager.startSmoothScroll(smoothScroller);