O meu método public view getView esta com problemas para recuperar a classe R do java. Eu ja tentei dar Clean e Build manual no projeto, mas ate agora nada. Como resolvo isso ? O método é esse:
public View getView(int position, View convertView, ViewGroup parent) {
Aluno aluno = alunos.get(position);
LayoutInflater inflater = activity.getLayoutInflater();
View linha = inflater.inflate(R.layout.item, null);
TextView nome = (TextView) linha.findViewById(R.id.nome);
nome.setText(aluno.getNome());
ImageView foto = (ImageView) linha.findViewById(R.id.foto);
if (aluno.getCaminhoFOTO() != null) {
Bitmap imagem = BitmapFactory.decodeFile(aluno.getCaminhoFOTO());
Bitmap imagemReduzida = Bitmap.createScaledBitmap(imagem, 100, 100, true);
foto.setImageBitmap(imagemReduzida);
}else {
foto.setImageResource(R.drawable.ic_delete);
}
return linha;
}