Android 에서 AutoComplete TextView 자동 완성 기능

최근 안 드 로 이 드 개발 을 공부 한 결과 안 드 로 이 드 에서 많은 컨트롤 들 이 구체 적 인 기능 에 따라 독립 된 것 을 발견 했다. 예 를 들 어 이 자동 으로 보 완 된 컨트롤 이다. 
쓸데없는 말 은 그만 하고 먼저 효 과 를 보 자.
내 가 aa 를 칠 때 힌트 를 줄 것 이다.다음은 코드 핵심 부분 을 직접 올 립 니 다.
xml 부분:
    <AutoCompleteTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="@string/app_name"
        android:id="@+id/autoCompleteTextView"
        android:layout_below="@+id/textView4"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:dropDownWidth="match_parent"/>

활동 부분:
 AutoCompleteTextView t;
    ArrayAdapter adapter;
    String[] array = {"aa", "vv", "bb", "ccadasfds", "dd123", "aa"};
    /**
     * ATTENTION: This was auto-generated to implement the App Indexing API.
     * See https://g.co/AppIndexing/AndroidStudio for more information.
     */
    private GoogleApiClient client;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        t = (AutoCompleteTextView) findViewById(R.id.autoCompleteTextView);
        adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, array);
        t.setAdapter(adapter);
        // ATTENTION: This was auto-generated to implement the App Indexing API.
        // See https://g.co/AppIndexing/AndroidStudio for more information.
        client = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
<span style="white-space:pre">	</span>
<span style="white-space:pre">	</span>
<span style="white-space:pre">	</span>//     ,           。
        RelativeLayout mylayout = (RelativeLayout)findViewById(R.id.myLayout);
        mylayout.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                InputMethodManager manager = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
                return manager.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(),0);
            }
        });
    }

좋은 웹페이지 즐겨찾기