Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to add listener that will react when an item is selected on the autocompletetextview...can anyone help //phonename is the autocompletetextview

PhoneName.setOnItemSelectedListener(new OnItemSelectedListener() {

            public void onItemSelected(AdapterView<?> arg0, View arg1,
                    int arg2, long arg3) {
                Toast.makeText(check.this," selected", Toast.LENGTH_LONG).show();

            }

            public void onNothingSelected(AdapterView<?> arg0) {
                // TODO Auto-generated method stub

            }
        });
share|improve this question
1  
have you tried for TextWatcher?? – ρяσѕρєя K Mar 8 '12 at 12:00
I am doing something similiar HERE!!! stackoverflow.com/questions/12854336/… – toobsco42 Oct 30 '12 at 19:37

2 Answers

up vote 8 down vote accepted

try this:

phoneName.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View arg1, int pos,
                long id) {
              Toast.makeText(check.this," selected", Toast.LENGTH_LONG).show();

        }
    });
share|improve this answer
1  
awesome !!!! thanks – Tony Mar 8 '12 at 11:25
2  
please click on to accept my answer..... – Nishant Mar 8 '12 at 11:31
Using this Listener, if I have a list of 10 items, but while typing autocomplete only produces 1 of the items, once i click on that item, will the pos parameter be the index in the entire list, or only in what is displayed? – JuiCe Feb 6 at 14:55
@JuiCe pos will be the index of the item displayed. – Nishant Feb 6 at 15:05

try this:

public class ActivityautoCompleteTextView extends Activity implements TextWatcher {
private the TextView selection;
private AutoCompleteTextView the edit;
private String [] items = {"lorem", "ipsum", "dolor", "sit", "amet", "consectetuer", "adipiscing", "elit", "morbi"," purus "};

@ Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate (savedInstanceState);
setContentView (R.layout.ActivityautoCompleteTextView);
selection = (TextView) findViewById (R.id.selection6);
edit = (AutoCompleteTextView) findViewById (R.id. editAuto);


edit. setAdapter (new ArrayAdapter <String> (this, android.R.layout.simple_dropdown_item_1line, items));

edit. addTextChangedListener (this);
}

public void afterTextChanged (Editable s) {

}

public void beforeTextChanged (CharSequence s, int start, int count, int after) {

}

public void onTextChanged (CharSequence s, int start, int before, int count) {
selection.setText (edit.getText ());
}
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.