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

Scroll text inside MultiAutoCompleteTextView programmatically

I want to create something similar to the Instagram search bar for messages, where I can add recipients as chips just pressing to the some user item from the suggestions list. My problem is the position of the cursor in the…
Michael Katkov
  • 2,256
  • 1
  • 20
  • 17
1
vote
0 answers

How to differentiate selected suggestion and normal text from spyglass library android?

I am using this library https://github.com/linkedin/Spyglass for showing social tag like facebook and linkedin. But after selection how to differentiate selected suggestion and other typed normal string? If user type "Hello @A" in EditText, here @A…
1
vote
1 answer

Adding values to array from the Multiautocomplete in android

How can i use MultiAutoCompleteTextView to get multiple entries from the user, So that each entries are added to individual Strings and every single Strings should be stored in string array.
William Willi
  • 194
  • 1
  • 2
  • 19
1
vote
0 answers

Android Custom Search View with MultiAutoComplete Text View

I want to achieve this type to search box in my application. Only issue is that I want to use my own custom MultiAutoComplete TextView in the Edit Text. So how do I handle this.
1
vote
1 answer

Android Spinner With MultiAutoCompleteTextView?

I'm Doing A Small Android App. In that I Have A Spinner With List Of Items(ex-Brand,Color). And Also I Have MultiAutoCompleteTextView. And I created Two Custom Array Adapters Color adapter and Brand Adapter. Color Adapter Holds The Values related…
Rakesh
  • 41
  • 1
  • 6
1
vote
0 answers

How to get whole text from MultiAutoCompleteTextView?

I am using MultiAutoCompleteTextView. When I select any item from a drop down then it displays in the MultiAutoCompleteTextView after I put some text in it. Adding some text after, I select a username from the auto complete and it comes in below…
Vasant
  • 3,475
  • 3
  • 19
  • 33
1
vote
2 answers

Android: multi select list preferences with autocomplete?

I need to let the user in my app to choose several cities. so the users should be able to choose "All Cities" or "multiple cities", every tap on city name will be shown above the list, and every click on the list above, will bring it back down, I…
1
vote
0 answers

Multiautocompletetextview with arrayadapter of object

I am beginning with multiautocompletetextview. I use ArrayAdapter. Now, when I choose any country, I want get their code and name. How do I do it? I need to help. This is my code. Main Activity and class Country public class Country { String…
Tung Tran
  • 2,885
  • 2
  • 17
  • 24
1
vote
1 answer

Delete entries in Android MultiAutoCompleteTextView

On a MultiAutoCompleteTextView in android I am able to add entries and parse them just fine. After auto completing the most recent item, when I press backspace it will delete all the characters before I autocompleted the item. Great. Now my problem…
1
vote
1 answer

How to apply List to MultiAutoCompleteTextView?

I have a MultiAutoCompleteTextView in my activity. I want to get a List of usernames in my "_User" table. I already know how to do it. The problem is that the MultiAutoCompleteTextView supports only ArrayAdapter. How can I convert the result from…
1
vote
1 answer

Android MultiAutoCompleteTextView : Except values other than Adapter

I am stuck with one problem that i have one MultiAutoCompleteTextView as shown in below image: In that i am selecting city name from suggestion of MultiAutoCompleteTextView and adding that item in ListView (as below). I want to prevent to enter…
Pratik Butani
  • 60,504
  • 58
  • 273
  • 437
1
vote
1 answer

Multiautocompletetextview not working properly

I am using multiautocomplete textview in my app,the items which I use with mutltiautocompletetextview is from json,now What I want is whenever user selects more than one value I need to get id of that item,I am able to get id of first item…
user4767117
1
vote
2 answers

MultiAutoCompleteTextView adds previously typed characters automatically to next selection

I am using the following tutorial to implement a MultiAutoCompleteTextView : http://developer.android.com/reference/android/widget/AutoCompleteTextView.html The problem I am facing is that let's say I select Belgium first by typing in 'be' and…
1
vote
1 answer

MultiAutoCompleteTextView strings getting "," after selecting string from drop down?

i integrated MultiAutoCompleteTextView in to my dictionary app so now after integrating it. i got a problem like this as show in second screen shot... so now i don't want that "," as show in second screen shots after ! i am getting "," like this…
android
  • 89
  • 11
1
vote
1 answer

MultiAutoCompleteTextView not showing keyboard suggestions

I'm using MultiAutoCompleteTextView in my app. It's an awesome control in Android API. But there are a few issues I'm facing. One, the most annoying is, that on my Nexus 5, it doesnot shows keyboard suggestions. On Xperia Z, shows keyboard…
Ammar
  • 1,811
  • 5
  • 26
  • 60