Closed leoacevedo closed 5 years ago
This looks like it will fix fix #584 and #608.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This PR is not stale.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This PR is not stale.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This PR is not stale.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Problem On the search result screen, when starting an app download and scrolling down the results list, the download progress indicator will appear on other apps.
Cause
ListItem
has a reference to itsView
, but this reference is not updated when that view is used to render a differentListItem
.Solution Keep note of the latest
ListItem
for eachView
inListAdapter
, and when thatView
has switched to render a differentListItem
, update the previousListItem
's reference withnull
.