Hello I'm currently having no luck with sussing out how to process an image after I have pulled a url out as async only allows for one return does anyone have any suggestions?
/**
* After completing background task Dismiss the progress dialog
* **/
protected void onPostExecute(String json) {
// dismiss the dialog after getting song information
try {
JSONObject jsonObject = new JSONObject(json);
JSONArray jsonArray = jsonObject.getJSONArray("users");
JSONObject arrayElement_0 = jsonArray.getJSONObject(0);
uname = arrayElement_0.getString(TAG_USERNAME);
ptitle = arrayElement_0.getString(TAG_PROFILETITLE);
age = arrayElement_0.getString(TAG_AGE);
gender = arrayElement_0.getString(TAG_GENDER);
status = arrayElement_0.getString(TAG_STATUS);
small = arrayElement_0.getString(TAG_SMALL);
BitmapFactory.decodeStream((InputStream)new URL(small).getContent());