Refiz todos os passos exatamente como o instrutor do curso mas dá a seguinte mensagem: error: no suitable method found for setOnClickListener() method View.setOnClickListener(OnClickListener) is not applicable (argument mismatch; cannot be converted to OnClickListener)
O método:
private void configuraLista() {
ListView listaDeAlunos = findViewById(R.id.activity_lista_alunos_list_view);
listaDeAlunos.setAdapter(new ArrayAdapter<>(
this,
android.R.layout.simple_expandable_list_item_1,
dao.todos()));
listaDeAlunos.setOnClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.i("posiccao aluno", ""+ position);
}
});
}