Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- 어노테이션
- Eclips
- Android
- AWT
- Spring
- JSP
- 배열
- Menu
- layout
- 예외처리
- 안드로이드
- Java
- oracle
- Graphic
- HTML
- struts2
- 메서드
- 생성자
- paint
- 전화걸기
- 국제화
- 메소드
- OGNL
- 기본
- mybatis
- 오버로딩
- 이클립스
- 에러페이지
- 클래스
- JavaScript
Archives
- Today
- Total
note
AutoComplete 자동완성기능 본문
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/selection"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<AutoCompleteTextView
android:id="@+id/edit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:completionThreshold="3"
/>
<!-- android:completionThreshold="3" 3글자 이상 입력시
(AutoCompleteTextView) 는 평소에 숨겨져 있다가 위에 조건이 만족하면 출력됨
여러개의 데이터를 표시할때는 listview가 좋다
-->
</LinearLayout>
package com.commonsware.android.selection9;
import android.app.Activity;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import android.widget.TextView;
public class AutoCompleteDemo extends Activity implements TextWatcher {
TextView selection;
AutoCompleteTextView edit;
String[] items = { "lorem", "ipsum", "dolor", "sit", "amet",
"consectueuer", "adipiscing", "elit", "morbi", "vel", "ligula",
"vitae", "arcu", "aliquet", "mollis", "etiam", "vel", "erat",
"placerat", "ante", "porttitor", "길다", "많다", "너무 많다", "너무 길다", };
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
selection = (TextView) findViewById(R.id.selection);
edit = (AutoCompleteTextView) findViewById(R.id.edit);
edit.addTextChangedListener(this);
//ArrayAdapter : AutoCompleteTextView 데이터 바인딩
//ArrayAdapter와 AutoCompleteTextView 연결
edit.setAdapter(new ArrayAdapter(this,
android.R.layout.simple_dropdown_item_1line, items));
}
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
}
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
selection.setText(edit.getText());
}
}
'Android > 기본' 카테고리의 다른 글
| Chrono 시간 , 날짜 처리 (0) | 2012.01.10 |
|---|---|
| Gallery ImageView (0) | 2012.01.10 |
| 그리드 Grid (0) | 2012.01.09 |
| 스핀 컨트롤 Spinner (0) | 2012.01.09 |
| ListActivity 사용 (0) | 2012.01.09 |