一次滑动播放GIF图像

时间:2018-10-17 11:57:45

标签: c# android xamarin android-glide

我试图找到如何在图像按钮中设置GIF图像并将其设置为仅播放一次的方法。

SetContentView(Resource.Layout.activity_main);
        var ib_main_home = FindViewById<ImageButton>(Resource.Id.ds);
        Glide.With(this).AsGif()
 .Load(Resource.Mipmap.giphy)
 .Into(ib_main_home);

2 个答案:

答案 0 :(得分:2)

请尝试添加RequestListener。并在OnResourceReady()中设置循环计数。 例如:

Glide.With(this).AsGif().Load(Resource.Mipmap.giphy).Listener(new MyRequestListener()).Into(ib_main_home);

还有RequestListener

public class MyRequestListener :Java.Lang.Object, IRequestListener
{
    public bool OnLoadFailed(GlideException p0, Java.Lang.Object p1, ITarget p2, bool p3)
    {
        return true;
    }

    public bool OnResourceReady(Java.Lang.Object p0, Java.Lang.Object p1, ITarget p2, DataSource p3, bool p4)
    {
        if (p0 is GifDrawable)
        {
            ((GifDrawable)p0).SetLoopCount(1);
        }
        return false;
    }
}

请查看以下链接以获取更多信息: https://github.com/bumptech/glide/issues/1706#issuecomment-282827419

答案 1 :(得分:0)

比利将 gif 加载到图像视图并控制所需循环次数的答案的 Java 版本:

Glide.with(this)
            .asGif()
            .load(R.raw.onboarding_layers) //Your gif resource
            .apply(RequestOptions.diskCacheStrategyOf(DiskCacheStrategy.NONE))
            .listener(new RequestListener<GifDrawable>() {
                @Override
                public boolean onLoadFailed(@Nullable @org.jetbrains.annotations.Nullable GlideException e, Object model, Target<GifDrawable> target, boolean isFirstResource) {
                    return false;
                }

                @Override
                public boolean onResourceReady(GifDrawable resource, Object model, Target<GifDrawable> target, DataSource dataSource, boolean isFirstResource) {
                    resource.setLoopCount(1);
                    return false;
                }
            })
            .into((ImageView) view.findViewById(R.id.layer_icons));