Transparent Part Of Image In Imageview Become Black
I have problem when displaying image with transparency in Android KitKat (Nexus 7), it is OK in nexus 4 (KitKat) and other previous Android OS, here the image: and ImageView layou
Solution 1:
After some trial: first I try using the image as resource drawable and it still happen (transparent part of the image become black), secondly I convert the image to png image and it is work, so the problem is in the file type (gif). since in my real app the image obtained from server and I can't request image as always in png format, I use the solution from this link: Transparent GIF in Android ImageView
it is simple for displaying only one image (like in my question) since I use Picasso I use target to erase black color from image avatar like this:
target = newTarget() {
@OverridepublicvoidonPrepareLoad(Drawable arg0) {
}
@OverridepublicvoidonBitmapLoaded(Bitmap bitmap, LoadedFrom arg1) {
if (Build.VERSION.SDK_INT == 19/*Build.VERSION_CODES.KITKAT*/){
Bitmap editedavatar = AndroidUtils.eraseColor(bitmap, -16777216);
avatar.setImageBitmap(editedavatar);
}
}
@OverridepublicvoidonBitmapFailed(Drawable arg0) {
avatar.setImageResource(R.drawable.ic_profile_default);
where erase color is static method
publicstatic Bitmap eraseColor(Bitmap src, int color){
int width = src.getWidth();
int height = src.getHeight();
Bitmap b = src.copy(Config.ARGB_8888, true);
b.setHasAlpha(true);
int[] pixels = newint[width * height];
src.getPixels(pixels, 0, width, 0, 0, width, height);
for (int i = 0; i < width * height; i++) {
if (pixels[i] == color) {
pixels[i] = 0;
}
}
b.setPixels(pixels, 0, width, 0, 0, width, height);
return b;
}
but since I use Picasso for displaying images in a listview,I impelements Target in ViewHolder and it is work very well so far.
Solution 2:
Try this
<ImageView
android:id="@+id/avatar"android:layout_width="35dp"android:layout_height="35dp"android:layout_gravity="center_vertical"android:layout_marginLeft="21dp"android:padding="3dp"android:src="@drawable/icon_button_profile_new"android:background="#00000000"android:tag="@string/avatar" />
Solution 3:
Try this :
android:background="@android:color/transparent"
or
imageView.setBackgroundColor(Color.TRANSPARENT);
Hope this helps.
Post a Comment for "Transparent Part Of Image In Imageview Become Black"