public void done(byte[] data, ParseException e) {
if (e == null && data == null) {
Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
ImageView imageView = new ImageView(getApplicationContext());
imageView.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT ));
imageView.setImageBitmap(bitmap);
linearLayout.addView(imageView);
listView.setAdapter(arrayAdapter);