I need to show this data from Parser in a listview, how do I?

0

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 {

        }
    }
});
    
asked by anonymous 18.05.2018 / 17:56

0 answers