Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 46242abf authored by Garfield Tan's avatar Garfield Tan Committed by android-build-merger
Browse files

Merge "Disable view recycling to avoid passing wrong type of view to...

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

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

Change-Id: I893081c411868d53ad0e7db42712c6defc706a35
parents 27653a92 b86c38f9
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -228,10 +228,11 @@ public class RootsFragment extends Fragment {
        }

        public View getView(View convertView, ViewGroup parent) {
            if (convertView == null) {
            // 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;
        }