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'm trying to change colour of the tag if the tag is clicked.
I'm doing this is onTagClickListener, code can be found below:
private OnTagClickListener onTagClickListener = new OnTagClickListener() { @OverRide
public void onTagClick(Tag tag, int i) {
tag.tagTextColor = getContext().getColor(R.color.black);
}
};
Is it possible to change colour of the tag this way?
Also, I need to change colour of the tag depending on the present colour of the tag. Is it possible to do using this library?
Thanks.
The text was updated successfully, but these errors were encountered:
I'm trying to change colour of the tag if the tag is clicked.
I'm doing this is onTagClickListener, code can be found below:
private OnTagClickListener onTagClickListener = new OnTagClickListener() {
@OverRide
public void onTagClick(Tag tag, int i) {
tag.tagTextColor = getContext().getColor(R.color.black);
}
};
Is it possible to change colour of the tag this way?
Also, I need to change colour of the tag depending on the present colour of the tag. Is it possible to do using this library?
Thanks.
The text was updated successfully, but these errors were encountered: