Android アプリケーションでautoCompleteTextViewを設定したいのですが、 Google map のようにautoCompleteTextViewに文字を入力すると、すべての場所が表示されます。そのタイプのautoCompleteTextViewをアプリに追加するにはどうすればよいですか。私は現在このコードを使用しています:
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_dropdown_item_1line, COUNTRIES);
AutoCompleteTextView textView = (AutoCompleteTextView)
findViewById(R.id.autoCompleteTextView);
textView.setAdapter(adapter);
.
.
private static final String[] COUNTRIES = new String[] {
"Belgium", "France", "Italy", "Germany", "Spain"
};
ただし、文字列配列の場所を表示します。
解決策を教えてください..