How am I suposed to get A List os tags?
Closed this issue · 5 comments
Can't figure out how to get List of tags - not from an event, but synchronously at any time. Like a
public List getTags() method on the TagsEditText?
I'll mark this as enhancement, and work on it asap
Just Add:
public List<String> getTags(){
return convertTagSpanToList(mTagSpans);
}
To the File TagsEditText.java
PS: I wanted to make a Pull Request but after opening this repo on Android Studio couldn't get gradle to Sync because of (but no problem since yo just will have those 3 lines above):
Error:org.gradle.api.internal.tasks.DefaultTaskInputs$TaskInputUnionFileCollection cannot be cast to org.gradle.api.internal.file.collections.DefaultConfigurableFileCollection
Possible causes for this unexpected error include:
- Gradle's dependency cache may be corrupt (this sometimes occurs after a network connection timeout.)
@mabbas007 Any updates on this?
... any updates i want to get a list
Working on it, will push it in a couple of minutes