Questions tagged [multiautocompletetextview]

An auto-complete textview which supports multiple strings, usually separated by a comma.

In the "To" field of an email composer, multiple emails could be separated by commas, while the user receives auto suggestions for each email being typed.

95 questions
1
vote
0 answers

Custom Span on MultiAutoCompleteTextView with some regex

I want to do @ mentions in my app. When I start typing and notice '@' I show the suggestions from the multiview, I pick the one that I want and at the end I get this string as a result. Hi @[John Snow](john-snow-id), I'm mention you in this…
Bri6ko
  • 1,858
  • 1
  • 18
  • 29
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,…
1
vote
1 answer

MultiAutoCompleteTextView token definition

I have a MultiAutoCompleteTextView that's tied to a TextWatcher and an adapter that returns stuff from a database based on what's typed in the field. This is all working properly, but I'm looking for a way to change the default token definition…
Dave
  • 4,050
  • 6
  • 30
  • 35
1
vote
1 answer

MultiAutoCompleteTextView custom adapter with custom object instead of String Object

This code is working fine as I want only when I pass ArrayList to the adapter. But when I add my object to adapter, in MultiAutoCompleteTextView it set object full name instead of object full name. I want only first_name from my JGETDATA…
user3442433
  • 53
  • 1
  • 6
1
vote
0 answers

Android : Not able to select item in MultiAutoCompleteTextView added in Dialog

I am having MultiAutoCompleteTextView in custom dialog. Added adapter to MultiAutoCompleteTextView successfully. MultiAutoCompleteTextView gives suggestions but not able to select item from suggestion list. Dialog xml contains : …
0
votes
0 answers

Limiting selections in MultiAutoCompleteTextView in Android

Question: I'm working on creating a custom MultiAutoCompleteTextView in my Android app, and I've implemented the basic functionality. However, I'm struggling with implementing a feature that limits the user to a specific number of selections, for…
0
votes
0 answers

android Editable remove span when user edits text the span is for

I have a MultiAutoCompleteTextView which presents a popup list when the user enters @ and a character. When the user enters characters, the list will contain any of my test strings that matches the characters entered. When the user selects an item…
se22as
  • 2,282
  • 5
  • 32
  • 54
0
votes
0 answers

MultiAutoCompleteTextView deleting end character from selected value removes all characters up to the ones i typed

I have a MultiAutoCompleteTextView which presents a popup list when the user enters @ and a character. When the user enters characters, the list will contain any of my test string that matches the characters entered. I can select an item from the…
se22as
  • 2,282
  • 5
  • 32
  • 54
0
votes
0 answers

Multiautocompletetextview Update ArrayAdapter List By Previous Word

Frist In AutoComplete ArrayAdapter Show item like Action , Car, Bike, Ships, helicopter etc When user Write Action. then show Action[] Array in AutoComplte in ArrayAdapter like Start, terminate,etc When user write Car. then show Car[] String Array…
0
votes
1 answer

How to autocomplete words with spaces in between in an edittext

I am trying to make a code editor for various programming languages but I am unable to add autocomplete feature to it. I tried to use MultiAutoCompleteTextView but it takes , as the default separator between words. For reference I want to make an…
0
votes
1 answer

How to show MultiAutoCompleteTextView dropdown at some other points in the text

I've implemented the MultiAutoCompleteTextView and everything is working fine but now I want to suggestions at any point the user press the first character of the suggested words. Basically the suggestions appears at the start of the text and when…
Akinyemi Jamiu
  • 431
  • 3
  • 10
0
votes
0 answers

Text area with 'CSS like' Properties and Values Auto Suggestion

I need MultiAutoComplete functionality in text area I tried datalist, jquery autocomplete but none of them seems to be working with my requirement Can anyone help me out please ? In text area ```if I need suggestion in Property``` e.g fever [this…
0
votes
1 answer

MultiAutoCompleteTextView android restrict user from selecting same value multiple times

MultiAutoCompleteTextView android how to restrict user from selecting same value multiple times?
Raul
  • 104
  • 8
0
votes
1 answer

java.lang.UnsupportedOperationException Error ArrayAdapter

I have a MultiAutoCompleteTextView where data is taken from Firestore. When i set the data in ArrayAdapter, i get an error like below. I followed the following method https://stackoverflow.com/a/2965808/2123594 , but I'm still confused where i…
0
votes
1 answer

Multiple tokenizer at multiautocompletetextview

I have trying to set multiple tokenizer at MultiAutoCompleteTextView.For example if user enters comma or semicolon it should call my adapter. What I have tried so far public class CommaTokenizer implements MultiAutoCompleteTextView.Tokenizer { …
Soham
  • 4,397
  • 11
  • 43
  • 71