Hola. Necesito mostrar datos en un AutoCompleteTextView desde una tabla.
Hice:
Código:
Cursor cnuevo = baseMatriculas.rawQuery("SELECT * FROM matriculas ORDER BY matricula",null);
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,android.R.layout.simple_dropdown_item_1line, cnuevo, new String[] {"matricula"}, new int[] {R.id.txtMatricula});
editMatricula = (AutoCompleteTextView) findViewById(R.id.txtMatricula);
editMatricula.setThreshold(1);
editMatricula.setAdapter(adapter);
Así como está planteado me da error.
Estuve leyendo en google que hay que utilizar CursorToStringConverter, tal vez falta esto y por eso me da error.
Desde ya muchas gracias por las respuestas.
Saludos