I need to get the item position of an autoCompleteTextView and pass the data to other fields. So far my code looks like this:
spinner_produtos.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override public void onItemClick(AdapterView<?> parent, View arg1, int pos, long id)
{
//etCodigo_produto.setText(lista_produtos.getItem(position).getCodigo_produto().toString());
codigo_produto = lista_produtos.getItem(pos).getCodigo_produto();
However, the selected item does not come. If anyone can help thank you.