Hi dear Backendlesses,
I’m trying to create a feed from data objects in Backendless.
I’ve created all of the advanced stuff I need - an adapter for listview etc, I just need to learn get all of the data objects from Backendless into string that fill the adapter.
when I’ve built it I’ve put a simple string like:
String[] contactname = new String[]{
“john”, “batman”, “bruce”
};
String[] job = new String[]{
“leader of mankind”, “a dark knight”, “not batman”
};but now I need to get the real information from the server and populate the lists with some “for” loop.totally don’t know how to do that.
thanks a lot!