这是我的arrayAdapter:
List<Nota> notas;
notas = bd.buscar(); // this function returns a list of Objects "Nota"
ArrayAdapter<Nota> arrayAdapter = new ArrayAdapter<Nota>
(this, android.R.layout.simple_list_item_1, notas);
list.setAdapter(arrayAdapter);
对象Nota有2个字段,一个Integer和一个String。 我想把Nota的String字段作为ArrayAdapter的标题,我该怎么做?