Android 에서 AutoComplete TextView 와 TextWatcher 를 결합 한 작은 인 스 턴 스

AutoComplete TextView 는 입력 내용 과 동적 으로 일치 하 는 입력 상자(EditText)로'and'를 입력 하면'Android'를 알려 줍 니 다.
효과 그림:

구현 코드:

package com.conowen.test; 
 
import android.app.Activity; 
import android.os.Bundle; 
import android.text.Editable; 
import android.text.TextWatcher; 
import android.widget.AutoCompleteTextView; 
 
public class DrComActivity extends Activity { 
 
  /** Called when the activity is first created. */ 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
 
     
    AutoCompleteTextView autoinput =(AutoCompleteTextView) findViewById(R.id.autoinput); 
 
    autoinput.setThreshold(1);//               
 
 
  autoinput.addTextChangedListener(new TextWatcher() { 
     
    @Override 
    public void onTextChanged(CharSequence s, int start, int before, int count) { 
      // TODO Auto-generated method stub 
      //s           ,       ,s          
 
         
         String str = s.toString(); 
         
        String[] temp = getInputAdapter(getInputWorldOrder(str)); 
         //      ,               ,              
         //       ,              adapter,         , 
        //                ,     adapter 
         ArrayAdapter<String> adapter = new ArrayAdapter<String>(ct, 
         android.R.layout.simple_dropdown_item_1line, temp); 
 
    
         autoinput.setAdapter(adapter) 
 
         //     ,  adapter,   adapter   AutoCompleteTextView    
 
    @Override 
    public void beforeTextChanged(CharSequence s, int start, int count, 
        int after) { 
      // TODO Auto-generated method stub 
 
    } 
 
    @Override 
    public void afterTextChanged(Editable s) { 
      // TODO Auto-generated method stub 
 
    } 
 
  } 
  } 
}
이상 은 본 고의 모든 내용 입 니 다.여러분 이 안 드 로 이 드 소프트웨어 프로 그래 밍 을 배 우 는 데 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기