Fix issue with blinking in recycler view
This commit is contained in:
parent
6c0aa4abf5
commit
710a88936c
1 changed files with 2 additions and 0 deletions
|
@ -152,6 +152,7 @@ public class ExploreRvAdapter extends RecyclerView.Adapter<RecyclerView.ViewHold
|
||||||
if(nd != null) {
|
if(nd != null) {
|
||||||
nd.updateView();
|
nd.updateView();
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
int pos = getNeededMapsCardPosition();
|
int pos = getNeededMapsCardPosition();
|
||||||
if (neededMapsCardExists(pos)) {
|
if (neededMapsCardExists(pos)) {
|
||||||
|
@ -192,6 +193,7 @@ public class ExploreRvAdapter extends RecyclerView.Adapter<RecyclerView.ViewHold
|
||||||
if(dc != null) {
|
if(dc != null) {
|
||||||
dc.updateProgresBar();
|
dc.updateProgresBar();
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
int pos = getDownloadUpdateCardPosition();
|
int pos = getDownloadUpdateCardPosition();
|
||||||
if (downloadUpdateCardExists(pos)) {
|
if (downloadUpdateCardExists(pos)) {
|
||||||
|
|
Loading…
Reference in a new issue