Skip to content

Commit

Permalink
Merge pull request #9369 from garymathews/TIMOB-25184_6_2_X
Browse files Browse the repository at this point in the history
[6_2_X][TIMOB-25184] Fix TableView row duplication on Android API 23+
  • Loading branch information
Lokesh Choudhary committed Aug 29, 2017
2 parents 7aab509 + c6af3b7 commit 10a2ad7
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 10a2ad7

Please sign in to comment.