Merge "Disable view recycling to avoid passing wrong type of view to Item.bindView()." into nyc-dev am: a5dd3f3

am: 105fba9

* commit '105fba9c08136192a56df867cbae3a11e492a448':
  Disable view recycling to avoid passing wrong type of view to Item.bindView().

Change-Id: Ibe7ec20b6f3ab7ae78a72547c12459307c5b2a92
This commit is contained in:
Garfield Tan
2016-04-22 23:39:38 +00:00
committed by android-build-merger

View File

@@ -228,10 +228,11 @@ public class RootsFragment extends Fragment {
}
public View getView(View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = LayoutInflater.from(parent.getContext())
// Disable recycling views because 1) it's very unlikely a view can be recycled here;
// 2) there is no easy way for us to know with which layout id the convertView was
// inflated; and 3) simplicity is much appreciated at this time.
convertView = LayoutInflater.from(parent.getContext())
.inflate(mLayoutId, parent, false);
}
bindView(convertView);
return convertView;
}