2013-03-10 15 views
22

Xin chào tôi có một chuỗi ở định dạng Base64. Tôi muốn chuyển đổi nó thành một bitmap và sau đó hiển thị nó cho một ImageView. Đây là mã:Đặt bitmap Android thành Imageview

ImageView user_image; 
Person person_object; 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.user_profile_screen); 

    // ImageViews 
    user_image = (ImageView) findViewById(R.id.userImageProfile); 

    Bundle data = getIntent().getExtras(); 
    person_object = data.getParcelable("person_object"); 
    // getPhoto() function returns a Base64 String 
    byte[] decodedString = Base64.decode(person_object.getPhoto(), Base64.DEFAULT); 

    Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length); 
    user_image.setImageBitmap(decodedByte); 
    } 

Mã này nhận được chuỗi Base64 thành công và tôi không gặp lỗi nào. Nhưng nó không hiển thị hình ảnh. Điều gì có thể là vấn đề? Cảm ơn

+0

hãy thử thêm hàng này: user_image.setScaleType (ScaleType.FIT_XY); – KEYSAN

+0

Tính năng này có hoạt động với hình ảnh tài nguyên không? Ví dụ, nếu bạn viết 'iuser_image.setImageResource (android.R.drawable.ic_delete)', nó có hiển thị gì không? – vorrtex

Trả lời

29

Vui lòng thử này:

byte[] decodedString = Base64.decode(person_object.getPhoto(),Base64.NO_WRAP); 
InputStream inputStream = new ByteArrayInputStream(decodedString); 
Bitmap bitmap = BitmapFactory.decodeStream(inputStream); 
user_image.setImageBitmap(bitmap); 
+1

Cảm ơn bạn đã trả lời. Nhưng nó không hoạt động. Tôi nghĩ rằng tôi chuyển đổi sang bitmap một cách chính xác. Sau khi tôi đặt bitmap thành chế độ xem, có cần phải thu thập lại dữ liệu để hiển thị trên màn hình không? – kgnkbyl

+0

Bạn có thể xem hình ảnh đó không? – Anjula

6

Có một thư viện tên Picasso mà hiệu quả có thể tải hình ảnh từ một URL. Nó cũng có thể tải một hình ảnh từ một tập tin.

Ví dụ:

  1. tải URL vào ImageView mà không tạo một bitmap:

    Picasso.with(context) // Context 
         .load("http://abc.imgur.com/gxsg.png") // URL or file 
         .into(imageView); // An ImageView object to show the loaded image 
    
  2. tải URL vào ImageView bằng cách tạo ra một bitmap:

    Picasso.with(this) 
         .load(artistImageUrl) 
         .into(new Target() { 
          @Override 
          public void onBitmapLoaded(final Bitmap bitmap, Picasso.LoadedFrom from) { 
           /* Save the bitmap or do something with it here */ 
    
           // Set it in the ImageView 
           theView.setImageBitmap(bitmap) 
          } 
    
          @Override 
          public void onBitmapFailed(Drawable errorDrawable) { 
    
          } 
    
          @Override 
          public void onPrepareLoad(Drawable placeHolderDrawable) { 
    
          } 
         }); 
    

Có có nhiều lựa chọn hơn các ion có sẵn trong Picasso. Here is the documentation.