В моем приложении я не буду использовать AutoCompleteTextView для завершения слова из списка массивов.
protected void onCreate(Bundle savedInstanceState) {
super.onCreate( savedInstanceState );
setContentView( R.layout.activity_initial_cost );
String[] tipsNameCost=getResources().getStringArray( R.array.name_costs );
editTextCostName=(AutoCompleteTextView) findViewById( R.id.edit_text_initial_cost_name );
ArrayAdapter<String> editTextAdapter=new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,tipsNameCost);
AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.edit_text_initial_cost_name);
textView.setThreshold(0);
textView.setAdapter(editTextAdapter);
XML
<AutoCompleteTextView
android:id="@+id/edit_text_initial_cost_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="4dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="4dp"
android:layout_weight="1"
android:editable="true"
android:inputType="text"
android:ems="10">
<requestFocus/>
</AutoCompleteTextView>
Это работает, когда я нажимаю в editTextCostName, и я напишу первую букву слова. Но я не буду этого делать. Когда пользователь нажимает на поле editextCostName, список с подсказками на выбор должен отображаться немедленно. Чтобы он мог выбрать слово из списка. Как это сделать?