Skip to content

Commit

Permalink
Merge pull request #9363 from garymathews/TIMOB-25184
Browse files Browse the repository at this point in the history
[TIMOB-25184] Android: Fix TableView row duplication on Android API 23+
  • Loading branch information
Lokesh Choudhary committed Aug 28, 2017
2 parents 3443ff4 + 41fe52a commit 984086d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ public View getView(int position, View convertView, ViewGroup parent) {
if (Build.VERSION.SDK_INT > 23) {
ArrayList<Item> models = viewModel.getViewModel();
if (models != null && models.contains(v.getRowData())) {
return v;
v = null;
sameView = true;
}
}

Expand Down

0 comments on commit 984086d

Please sign in to comment.