You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just downloaded and run the sample project AndroidHorizontalListViewSample, then I think I found a bug:
Here is the original code for data of the list view:
private CustomData[] mCustomData = new CustomData[] {
new CustomData(Color.RED, "Red"),
new CustomData(Color.DKGRAY, "Dark Gray"),
new CustomData(Color.GREEN, "Green"),
new CustomData(Color.LTGRAY, "Light Gray")
...
};
Then if I change the background color to all the same like this:
private CustomData[] mCustomData = new CustomData[] {
new CustomData(Color.RED, "1Red"),
new CustomData(Color.RED, "2Dark Gray"),
new CustomData(Color.RED, "3Green"),
new CustomData(Color.RED, "4Light Gray")
... (same for the rest)
};
(I added numbers in the color name to easily identify the repeat)
Run the project again and you will see all the item will be messed up.
Could you guy please check?
Thanks
The text was updated successfully, but these errors were encountered:
I just downloaded and run the sample project AndroidHorizontalListViewSample, then I think I found a bug:
Here is the original code for data of the list view:
Then if I change the background color to all the same like this:
(I added numbers in the color name to easily identify the repeat)
Run the project again and you will see all the item will be messed up.
Could you guy please check?
Thanks
The text was updated successfully, but these errors were encountered: