I need to show this data in a listview, it's relational data, I already know how to re-emerge, what I do not know is how to show it, I'm doing it inside an activity.
//passando uma foto da galeria para a imageviewe
Intent i = getIntent();
obID = i.getStringExtra("imagem");
ParseQuery<ParseObject> query = ParseQuery.getQuery("comentario");
query.whereEqualTo("parentesco", obID);
query.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> commentList, ParseException e) {
if (e==null){
} else {
}
}
});