Bitmap bitmap = BitmapFactory.decodeByteArray(m_pic, 0, m_pic.length);
Log.v(FTAG, "PreviewWnd before Create ImageView");
ImageView iv = (ImageView)findViewById(R.id.ImageView01);
Log.v(FTAG, "PreviewWnd before setImageBitmap");
iv.setImageBitmap(bitmap);
Log.v(FTAG, "PreviewWnd That's it");
it doesn't work so far... m_pic is a byteArray
Is my coding wrong? Or do i just not see my mistake?


