我有3 autocompletetextview
的在其中我設置它的適配器是一個ArrayAdapter<String>
與一個非常簡單的textview
佈局。android autocompletetextview提示結果隱藏在鍵盤下
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));
似乎並沒有在Android 6.0的工作 – 2015-12-06 16:28:03