I'm trying to retrieve an entire array that is stored in parse. I know how to retrieve int, strings but I dont know how to retrieve an array. I've used .get() but i dont know how to do it. Do I have to create an ArrayList? A List ?
//Inside the query
ArrayList<String> list= new ArrayList<String>;
list=object.get("array");
If you can provide an example please.