am 6f07cc84: Merge "Rebind transient state views when available" into klp-dev
* commit '6f07cc8424caccda695918f83e1b57f7a67d9f0c': Rebind transient state views when available
This commit is contained in:
@@ -2231,12 +2231,10 @@ public abstract class AbsListView extends AdapterView<ListAdapter> implements Te
|
||||
View scrapView;
|
||||
|
||||
scrapView = mRecycler.getTransientStateView(position);
|
||||
if (scrapView != null) {
|
||||
return scrapView;
|
||||
if (scrapView == null) {
|
||||
scrapView = mRecycler.getScrapView(position);
|
||||
}
|
||||
|
||||
scrapView = mRecycler.getScrapView(position);
|
||||
|
||||
View child;
|
||||
if (scrapView != null) {
|
||||
child = mAdapter.getView(position, scrapView, this);
|
||||
|
||||
Reference in New Issue
Block a user