java.lang.Object | |||||
↳ | android.view.View | ||||
↳ | android.widget.TextView | ||||
↳ | android.widget.EditText | ||||
↳ | android.widget. | ||||
↳ | android.widget. |
- AutoCompleteTextView와 다른점은 tokenizer로 여러개를 입력할 수(선택할 수) 있다.
예) 쉼표(,) tokenizer라면 "Belgium, France"가 가능
- 반드시 목록에 있는 항목을 선택해야 하는것은 아님
1. 자동완성에 쓸 문자열 및 Tokenizer 연결시키기(setAdapter(), setTokenizer())
public class CountriesActivity
protected void onCreate(Bundl
super.onCreate(savedInstanceS
setContentView(R.layout.autoc
ArrayAdapter<String> adapter
android.R.layout.simple_
MultiAutoCompleteTextView
textView.setAdapter(adapter);
textView.setTokenizer(new Mul
}
private static final String[]
"Belgium", "France", "Italy",
};
}
2. android:completionHint [ se
3. android:completionThreshold
android:layout_height = "wrap_content"로 설정해야 드롭다운 목록이 보일것이다.
[출처] MultiAutoCompleteTextView 속성, 메소드 정리|작성자 동동
'안드로이드' 카테고리의 다른 글
adb shell 처리 방법 (0) | 2011.01.27 |
---|---|
TextWatcher (0) | 2011.01.27 |
전화중인 상태 체크하기 (0) | 2011.01.27 |
Telephony 기능 (0) | 2011.01.27 |
멀티 터치 구현 예제 (0) | 2011.01.27 |