hanggrian / socialview

Android TextView and EditText with hashtag, mention, and hyperlink support
http://hanggrian.com/socialview/
Apache License 2.0
323 stars 81 forks source link

allow override convertToString #48

Closed stanbar closed 5 years ago

stanbar commented 5 years ago

allow override convertToString. So I can define my own way of converting the object to what will be seen by user example

AuthorArrayAdapter : SuggestionArrayAdapter<Author>{
    ...
    override fun convertToString(it: Author): CharSequence = it.displayName.replace(" ", "_")
    ...
}