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

Android multiautocomplete textview suggestion with any letter

I am having a array list with names of fruit (for example). I have Edittext in layout and I want to use Multiautocomplete feature into it. When I use multiautocomplete textview then the suggestions are shown only when the first letters matches the…
0
votes
2 answers

Make text in EditText Gray with background after selecting from suggestion List in MultiAutoCompleteTextView

My Question is that I have a MultiAutoCompleteTextView in which when I typed "@A" then the words Starting from A should be displayed and I achieved that. I am getting the list and when I clicked on suggested list the word is displayed in the…
Mohd Asif Ahmed
  • 1,880
  • 2
  • 15
  • 29
0
votes
0 answers

Show EditText data as suggestion in android

Hello, I have a requirement to use MultiAutoCompleteTextView and I implemented that. But suppose if there is no suggestion in the list then the data(word) whatever the user entered should be displayed as like suggestion. For Example: String[] a =…
Mohd Asif Ahmed
  • 1,880
  • 2
  • 15
  • 29
0
votes
1 answer

Getting auto complete list from txt file for MultiAutoCompleteTextView (re-posted)

Someone marked this question as duplicate(What is a NullPointerException, and how do I fix it?), but that didn't help at all. I'm reposting the question. // I'm just learning myself and pretty new to android programming and java. I'm trying to get…
NcGYBer
  • 1
  • 2
0
votes
1 answer

NoSuchMethod exception in MultiAutoCompleteTextView Android

I am fetching all contact through the following function . public ArrayList getAllPhoneContacts() { Log.d("START","Getting all Contacts"); ArrayList arrContacts = new…
user5617522
0
votes
2 answers

How to get a List of Parse usernames?

I have this code on my activity: ParseQuery query = ParseUser.getQuery(); query.findInBackground(new FindCallback() { public void done(List userList, ParseException e) { if (e == null) { …
0
votes
2 answers

Contacts storage in Shared Preferences

I am Building an app where a Dialog box pops up when a button is clicked in an activity and the Dialog Box contain a MultiAutoCompleteTextview to select contacts in the form of contactname%number,contactname1%number,contactname2%number... so now i…
0
votes
1 answer

How to update ArrayList used to store KEY in MultiAutoCompleteTextView

I applied a MultiAutoCompleteTextView in my application. Most of the function may be treat as RECEIVER box of email app. I used a custom adapter with hashMap to store the Name and Id as sources of suggestion. When user click the name suggested (only…
0
votes
3 answers

To split Strings from a MultiAutoCompleteTextView and set it to different textview

I have a array of strings which is a resultant of options selected from a MultiAutoCompleteTextView using the comma tokenizer. The string appears as below: "India, China, Japan, America, Australia" I need to seperate this values based on the coma…
Parthiban M
  • 1,104
  • 1
  • 10
  • 30
0
votes
1 answer

Using MultiAutoCompleteTextview which stores ids

In my app, I want to use a MultiAutoCompleteTextview to get an effect like Facebook mentioning. After I type '@', I want to get a dropdown list from which to select a person. This will show the person's name in the MACTextView. "Went to the cinema…
Jesse Bakker
  • 2,403
  • 13
  • 25
0
votes
0 answers

how to find the actual position of object in MultiAutoCompleteTextView

MultiAutoCompleteTextView multiAutoCompleteTextView = (MultiAutoCompleteTextView)findViewById(R.id.multiAutoComplete); ArrayAdapter arrayAdapter = new…
sandeep_kosta
  • 346
  • 1
  • 15
0
votes
3 answers

How to show dropdown only when inserting @ character on MultiAutoCompleteTextView in android

I have a MultiAutoCompleteTextView. It works fine. But I want to show suggestion dropdown only when user type @ on it (like tagging user in facebook app). I have no idea how to do it. Here is my code : mChatbox = (MultiAutoCompleteTextView)…
Arkar Aung
  • 3,554
  • 1
  • 16
  • 25
0
votes
0 answers

Use SimpleCursorAdapter for MultiAutoCompleteTextView?

I have a database and I would like to use it as data source for MultiAutoCompleteTextView. Is it possible utilize SimpleCursorAdapter in MultiAutoCompleteTextView? this is code Cursor cursor = db.query(TABLE_NAME, COLUMN, null, null, null, null,…
0
votes
1 answer

Android / Java - MultiAutoCompleteTextView returns null - Causes FATAL NullPointerException

I have a Calendar within my Android app which implements MultiAutoCompleteTextView: MultiAutoCompleteTextView mAttendeesList; ... mAttendeesListView = (LinearLayout) view.findViewById(R.id.scheduling_attendee_list); View Class's source (if…
0
votes
2 answers

MultiAutoCompleteTextView suggestion separator color

I'm using MultiAutoCompleteTextView in my Android app. I need to customize the suggestion list of this control. I've tried this to customize the list separator color but this didn't worked for me. How can I update the default list divider color of…
Ammar
  • 1,811
  • 5
  • 26
  • 60