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
0
votes
1 answer

Clear text of MultiAutoCompleteTextView after click of hint item

I am utilizing Multiautocompletetextview in my application. I have succesfully implemented the functionality however the issue is that whenever I click on the suggested item that I am choosing and return to the edit text to add another value to the…
NVA
  • 1,662
  • 5
  • 17
  • 24
0
votes
1 answer

Xamarin Android - Hiding Keyboard on initial activity load

In my app, I have a AutoCompleteTextView field at the top of my activity and a list at the bottom of the activity. So what I'm having issues with is when the activity opens the list gets covered up by the keyboard. The AutoCompleteTextView field…
J Hunt
  • 733
  • 1
  • 10
  • 21
0
votes
1 answer

MultiAutoCompleteTextView does not invoke onFocusChanged()

In need to do some stuff when the MultiAutoCompleteTextView gets tapped and gain focus but it seems that the listener does not get invoked. Any idea why? Here's the code: searchbar.setOnFocusChangeListener(new View.OnFocusChangeListener() { …
Lamberto Basti
  • 478
  • 1
  • 6
  • 24
0
votes
1 answer

How to use rxjava2 with MultiAutoCompleteTextView?

I checked support of Rxbinding for MultiAutoCompleteTextView. But haven't seen any option.
0
votes
1 answer

Android MultiAutocompleteTextView Unicode input support

I have implemented a MultiAutocompleteTextView to get user input but it cannot handle Hindi input the way an edit text can. When I pick data from my edit text I get the Unicode text in my database but it doesn't seem to work in the MultiAutocomplete…
Joey Pinto
  • 1,735
  • 1
  • 18
  • 34
0
votes
0 answers

MultiAutoCompleteTextView setDropDownAnchor

I want to set multiautocompletetextview cursor as the anchor for my multiautocompletetextview itself. I want it to look like sublime or notepad dropdown, which is responsible whenever the user change the cursor, how can I do…
0
votes
0 answers

Application hangs when using MultiAutoCompleteTextView Validator

I am using a validator with the MultiAutoCompleteTextView and whenever I'm clicking on a suggestion the application hangs.this is my validator code. participants.setValidator(new AutoCompleteTextView.Validator() { @Override …
Chathu_sm
  • 85
  • 9
0
votes
2 answers

MultiAutoCompleteTextView doesn't accept blank spaces

My problem is that when I suggest sentences in MultiAutoCompleteTextView, when I press spacebar, the suggestions disappear. Example: Suggested words: THE ROCK THE BALL THERMAL If I write "THE", all sentences are displayed, but if I write "THE "…
cnbandicoot
  • 372
  • 3
  • 13
0
votes
1 answer

I want to pop up a drop down list on press of @.

i am new to android and trying to make a tagging feature in which when i type @ a drop down list will be shown(not after writing letter after @).. I read the similar type of question here but i did not get the answer.. Please help me with this…
0
votes
2 answers

Enter double space to replace comma in multiautocompletetextview

I want to add comma when I enter double space from keyboard in multiautocompletetextview. I search lots of thing in google. But can't reach my goal. I want to replace comma for double space entering by user. So obviously, I must have to write…
dipali
  • 10,966
  • 5
  • 25
  • 51
0
votes
1 answer

Remove text from MultiAutoCompleteTextView by clicking Imagebutton

So, I have a MultiAutoCompleteTextView and a ImageButton. The MultiAutoCompleteTextView is populated with a string for example: abc, bcd, ecf, So while pressing the Image Button, the string should be erased as: abc, bcd, Again if I do the same, the…
user6504610
0
votes
1 answer

Android MultiAutoCompleteTextView truncate string

I have a string MultiAutoCompleteTextview as: VACUTAINER [3X10] - 30RS, VACUTAINER[4 X10] - 40RS So here, I want to split the string after (-) and I also want to truncate the last two characters (RS) and get the string as 30 40 and want to sum this…
user6504610
0
votes
1 answer

EditText with MultiAutocomplete Dynamic Text Select

I want to make EditText Card like View that have autocomplete feature , and auto completes are fetched using retrofit api , example can be shown below: Can you suggest some easy to use gitHub library to implement this View in android or suggest the…
Zulqurnain Jutt
  • 1,083
  • 3
  • 15
  • 41
0
votes
1 answer

Android inflate list for MultiAutoCompleteTextview (MultiAutocompleteTextview being inside popup window)

In my application I have inflate my custom view using popupwindow. Now inside that there is one AutoCompleteTextview which gives suggestions. Now the issue is that whenever I start typing text inside the AutoCompleteTextView the application…
0
votes
1 answer

Insert array into Mysql?

i have made MultiAutoCompleteTextView here and i get multiple pieces of Strings and i collected them using string-array . I want to insert them into MySql database. here is my android code: @Override protected void onCreate(Bundle…
William Willi
  • 194
  • 1
  • 2
  • 19