Ok..
So my response is: 09-03 18:53:48.192: DEBUG/directors(859):
{name=Peter Jackson, id=10176}
but how can i get name and id out of this response and save it in the
Directors class?
On 3 sep, 18:51, skink <[email protected]> wrote:
> directors is also [Object that is Object array, so:
>
> Object[] directors = (Object[]) response.get("directors");
>
> for (int i=0; i<directors.length; i++) {
> Log.d("log", directors[i]);
>
> }
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---