私はautocompletetextview
、アダプターをArrayAdapter<String>
非常に単純なtextview
レイアウトに設定した 3 つを持っています。
autocompletextview
ヒントの結果は表示されていますが、オンスクリーン キーボードの下にあります (一部が表示されています)。autocompletetextview
結果を下ではなく上に表示するにはどうすればよいですか?
airline = (AutoCompleteTextView)findViewById(R.id.airline);
airline.setAdapter(new ArrayAdapter<String>(this, R.layout.autcomplete_dropdown, AIRLINES_AUTOCOMPLETE_ARRAY));
departLocation = (AutoCompleteTextView)findViewById(R.id.departLocation);
departLocation.setAdapter(new ArrayAdapter<String>(this, R.layout.autcomplete_dropdown, LOCATIONS_AUTOCOMPLETE_ARRAY));
arriveLocation = (AutoCompleteTextView)findViewById(R.id.arriveLocation);
arriveLocation.setAdapter(new ArrayAdapter<String>(this, R.layout.autcomplete_dropdown, LOCATIONS_AUTOCOMPLETE_ARRAY));