2021-12-08 09:59:36 -05:00

34 lines
1.1 KiB
Java
Executable File

package io.noties.markwon.span.ext;
import android.graphics.drawable.Drawable;
import android.text.style.DynamicDrawableSpan;
import com.bumptech.glide.load.resource.gif.GifDrawable;
public class GifDrawableSpan extends DynamicDrawableSpan {
private GifDrawable drawable;
private int requiredWidth = 0;
private int requiredHeight = 0;
public GifDrawableSpan(GifDrawable drawable){
this.drawable = drawable;
}
public GifDrawableSpan(GifDrawable drawable, int requiredWidth, int requiredHeight){
this.requiredWidth = requiredWidth;
this.requiredHeight = requiredHeight;
this.drawable = drawable;
}
@Override
public Drawable getDrawable() {
// drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
if (requiredHeight != 0 && requiredWidth != 0) {
drawable.setBounds(0, 0, requiredWidth, requiredHeight);
} else {
drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight());
}
return drawable;
}
}