아는 것이 좋은 것이다.

[Android] 자동완성 예제 본문

Android

[Android] 자동완성 예제

start0 2014. 11. 3. 19:06

레이아웃


        <AutoCompleteTextView

            android:id="@+id/textview1"

            android:layout_width="match_parent"

            android:layout_height="wrap_content"

            android:layout_weight="1"            

            android:includeFontPadding="false"

            android:inputType="text"

            android:textSize="15sp"

            android:textStyle="bold" />


자바 코드


String[] arrayData = {"aaa", "BBB", "CCC"};

ArrayAdapter<String> arrAdapter = new ArrayAdapter<String>(mContext,android.R.layout.simple_dropdown_item_1line, arrayData);


autoEdit = (AutoCompleteTextView) findViewById(R.id.textview1);


autoEdit.setAdapter(arrAdapter);

Comments