nome = (EditText) findViewById(R.id.edt_nomecli);
listaclientes.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
Integer cod = i;
Cursor cursor = banco.rawQuery("SELECT nome FROM clientes WHERE id_cli = '"+cod+"' ",null);
if(cursor!=null)
{
int cnome=cursor.getColumnIndex("nome");
nome.setText(cursor.getString(cnome), TextView.BufferType.EDITABLE);
}
}
});
The ERROR IS TIME TO IMPLEMENT.