Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AutoCompletTextView Web サイトからテキストを渡して結果を表示するにはどうすればよいですかListView
AutoCompletTextView
ListView
Web サービス データを解析した後、結果を配列に取得します。
resultData結果を名前付きの配列に取得し、以下のコードを使用するとしましょう。
resultData
arrayAdapter = new ArrayAdapter<String>(viewAutoComplete, android.R.layout.simple_list_item_1, resultData); autoCompleteText.setAdapter(arrayAdapter);