TokenAutoComplete is an Android Gmail style token auto-complete text field and filter. It's designed to have an extremely simple API to make it easy for anyone to implement this functionality while still exposing enough customization to let you make it awesome.
Questions tagged [tokenautocomplete]
9 questions
7
votes
2 answers
Android AutoCompleteTextView with '@' mentions filtering like twitter and facebook
I have a requirement for implementing an edit text that the user can type in a anything but when they type in a new word that starts with '@' the autocomplete should start showing potential users.
I understand how to use the AutoCompleteTextView…

FlashAsh80
- 1,357
- 1
- 16
- 27
1
vote
1 answer
Using Spannable in MultiAutoComplete (TokenAutoComplete) - Android
I want to perform spanning on MultiAutoCompleteTextView in my android application. For that i have referred Splitwise TokenAutoComplete
project and its working properly. They have created custom MultiAutoCompleteTextView for entering email id.here,…

Zankhna
- 4,570
- 9
- 62
- 103
0
votes
2 answers
TextView with spans , how can I know which one is clicked on?
I am using this library, but from the onClick styles that they have, neither handles my needed case.
https://github.com/splitwise/TokenAutoComplete
So I wanted to do my own. So I have a ContactsCompletionView, which is a TextView. and I override the…

rosu alin
- 5,674
- 11
- 69
- 150
0
votes
1 answer
how to remove text after create token in TokenAutoComplete in xamarin android
I won't remove text after creating token in TokenAutoComplete library in xamarin android.
bellow is my code
_searchView.Text= _searchView.Text.Replace(text, string.Empty);
_searchView.PerformCompletion();
_searchView.AddObject(collaborator);
I…

Adil Saiyad
- 1,582
- 2
- 17
- 34
0
votes
1 answer
Image loading failed in TokenAutoComplete library
Im using TokenAutoComplete to create recipients, so i created custom view with image, but when i'm trying to load image into it, it doesn't work.
I tried with Picasso and Glide with remote and local image url's.
It doesn't gives any error, just…

Eliran Goshen
- 83
- 1
- 11
0
votes
1 answer
UWP - How to create a TokenAutoComplete Control
I am developing UWP (Win10 - VS2015) App. I need a Token TextBox in Windows Platform. Any idea please, how to start and create this control, then when writing text inside the Textbox and put space or just tap that text, it should convert into…

Zia Ur Rahman
- 1,850
- 1
- 21
- 30
0
votes
0 answers
Android MultiAutoCompleteTextView-TokenAutoComplete
I implemented MultiAutoCompleteTextView tags using this example:
https://github.com/splitwise/TokenAutoComplete/
But the problem is how to restrict the user to delete the particular tag when user press android native delete button in the key board,…

Rambabu
- 9
- 2
0
votes
1 answer
Error inflating class com.tokenautocomplete.ContactsCompletionView
I am trying to encorporate this plugin into a fragment of mine. I like the dependencie in my gradle file:
compile "com.splitwise:tokenautocomplete:1.3.1@aar"
My fragments onCreateView looks like:
View view =…
user2872493
0
votes
1 answer
Adding items to TokenAutoComplete Android
I am using the TokenAutoComplete library for adding Gmail style chips to my textfield. Everything is working fine. The only problem is that i want to add items to my ChipTextView when the UI is loaded but i cannot find any way to do that. All the…

Sheraz Ahmad Khilji
- 8,300
- 9
- 52
- 84