के तहत छिपे हुए परिणाम परिणाम मेरे पास 3 autocompletetextview
है जिसमें मैंने अपने एडाप्टर को ArrayAdapter<String>
को एक बहुत ही सरल textview
लेआउट के साथ सेट किया है।एंड्रॉइड 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));
एंड्रॉयड 6.0 पर काम करने के लिए प्रतीत नहीं होता –