I get a bitmap from internal storage or from the Internet. When I try to display it in ImageView, it works on different versions of the emulator, but not on my Galaxy S I9000. The bitmap is simply not displayed.
protected void onPostExecute (Bitmap bmp) {
progressBar.setVisibility(View.INVISIBLE);
if (bmp != null) {
imageView.setImageBitmap(bmp);
imageView.setVisibility(View.VISIBLE);
}
}
source
share