我正在使用Glide library
下载图像并将其显示在我的适配器中,问题是,在设置图像后,它们获得的背景不在下载的图像中,ImageView
为他们添加了这种颜色
这是一个示例:
如您所见,它具有非常浅的绿色背景色,它本身的图像具有白色背景。
到目前为止我尝试过的事情:
xml layout
transparent background color
View.setBackgroundColor(Color.TRANSPARENT)
View.setBackgroundColor(0x00000000)
什么都没有... 我该如何摆脱呢?
:: EDit
附加的布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/flag"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:adjustViewBounds="true"
android:backgroundTint="#fff"
android:background="#fff" />
</RelativeLayout>