удалить ненужный белый фон из GIF с Glide? - PullRequest
0 голосов
/ 20 мая 2019

Я получил ненужный белый фон с квадратной рамкой при загрузке с Glide

Ниже приведен мой код и снимок экрана;

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

enter image description here

1 Ответ

0 голосов
/ 20 мая 2019

попробуйте использовать кнопку изображения и применить приведенный ниже код. 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" />
...