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
hãy thử thêm hàng này: user_image.setScaleType (ScaleType.FIT_XY); – KEYSAN
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