J'ai 3 autocompletetextview
dans lequel j'ai défini son adaptateur comme étant un ArrayAdapter<String>
avec un très simple textview
disposition.
En autocompletextview
les résultats des indices s'affichent, mais sont sous le clavier à l'écran (je peux en voir une partie). comment puis-je faire en sorte que les résultats s'affichent au-dessus du clavier à l'écran ? autocompletetextview
plutôt qu'en dessous ?
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));