How to recover all ParseObject lines in android

In googlemap, if a user of my application creates any manufacturer, I save the marker location data as a parsing object, here it is Now I want to get all the location data of all the markers on how to do this. plz does not give parsing .com tutorials, i already went through this, help me. Thanks in advance.

+8
android
source share
1 answer

Try something like ....

ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("GreenMarkers"); query.findInBackground(new FindCallback<ParseObject>() { public void done(List<ParseObject> markers, ParseException e) { if (e == null) { // your logic here } else { // handle Parse Exception here } } }); 

This should get all the items from the GreenMarkers table.

+16
source share

All Articles