I want get the text from the Android AutoCompletedTextview data in the program for that I write the following code :
autoCompleteTextView = (AutoCompleteTextView) findViewById(R.id.searchField);
String starttext= autoCompleteTextView.getText().toString();
but the value selected in the Autocompletedtextview not getting how can i do.
Add below code into your onCreate() method, it will solve your problem.