首页 > 解决方案 > 使用 Glide 从 gif 中删除不必要的白色背景?

问题描述

使用Glide加载时,我得到了不必要的带有方形框的白色背景

以下是我的代码和屏幕截图;

Glide.with(NearByRestaurantsListActivity.this).load(R.raw.badge_green_yellow).asGif().
   diskCacheStrategy(DiskCacheStrategy.NONE).crossFade().into(holder.ivHourlyIcon);

在此处输入图像描述

标签: androidandroid-glide

解决方案


尝试使用图像按钮并应用以下代码。android:background="?attr/selectableItemBackgroundBorderless"将帮助您获得白色背景。加载这个滑翔。

           <ImageButton
            android:id="@+id/ivHourlyIcon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:adjustViewBounds="true"
            android:scaleType="centerInside"
            android:layout_toStartOf="@id/stillshot"
            android:layout_marginRight="@dimen/dp_5"
            android:background="?attr/selectableItemBackgroundBorderless"
            android:src="@drawable/circle_gallery"
            tools:ignore="ContentDescription" />

推荐阅读