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
If you set the background color of the TagView the tags are not drawn properly and it shows completely blank. The tags are there, because the TagView is using the correct space, but they are just not drawn correctly.
for (DanceStyle style : DanceStyles.all()) {
Tag tag = new Tag(style.name);
//tag.tagTextColor = getResources().getColor(R.color.editHeaderText);
tag.layoutColor = getResources().getColor(style.resColor);
tag.radius = 20f;
danceStyles.addTag(tag);
danceStylesEdit.addTag(tag);
}
And this is the result:
You can see that despite both Tag Views being filled exactly the same way, the one with the background property set draws no tags... Maybe the tags are "bellow" the background...
The text was updated successfully, but these errors were encountered:
If you set the background color of the TagView the tags are not drawn properly and it shows completely blank. The tags are there, because the TagView is using the correct space, but they are just not drawn correctly.
Here is the XML:
Here is how I fill both Tag Views:
And this is the result:
You can see that despite both Tag Views being filled exactly the same way, the one with the background property set draws no tags... Maybe the tags are "bellow" the background...
The text was updated successfully, but these errors were encountered: