I want to make custom AutoCompleteView like this..
It should be populated when my special character is added (like facebook.. When you type @B then all friends those name starts with 'B' will be populated and we can select name).
It should not be populate while typing until '@' is added.
When '@' is added autocompleteview is dropped down and we can select name and after selecting it will be appended.
I found this but not satisfied. I need clue. They have implemented...like when you type '@' dropdown populates.But I have to customize more. Right now I need help if other is having idea or any in-completed source.
I have to try myself but let me ask before implementing customview to save my time.
You can achieve this using
MultiAutoCompleteTextView
. Just implement your ownTokenizer
class and it works. For mentions I have written a class you can use it.Then on View section (Activity or Fragment) instead of doing
do following
It works.
You have to make custom autocompleteview by extending class.. and code mentioned in your question to be changed.
Hope this will help you...