码迷,mamicode.com
首页 > 其他好文 > 详细

Fresco(各种特效)——播放gif

时间:2015-04-15 13:34:28      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:fresco   frescogif   androidgif   android   

  • xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:fresco="http://schemas.android.com/apk/res-auto"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:gravity="center_horizontal"
              android:orientation="vertical">


    <Button
        android:id="@+id/xml_bt_xml_gif"
        android:layout_width="match_parent"
        android:layout_height="45dp"
        android:text="gif播放/暂停"/>

    <com.facebook.drawee.view.SimpleDraweeView
        android:layout_width="350dp"
        android:layout_height="300dp"
        fresco:placeholderImage="@mipmap/android_icon"
        android:id="@+id/xml_gif_iv_show"/>

</LinearLayout>
  • 核心java代码

1.设置DraweeControllersetAutoPlayAnimations(true) 为true,自动播放

draweeController= Fresco.newDraweeControllerBuilder()
                .setAutoPlayAnimations(true)
                .setUri(Uri.parse(uri))//设置uri
                .build();
//设置Controller
simpleDraweeView.setController(draweeController);

2.控制播放

Animatable animatable=draweeController.getAnimatable();
    //判断是否正在运行
    if (animatable.isRunning()){
        //运行中,停止
        animatable.stop();
    }else{
        //停止了,运行
        animatable.start();
    }
  • 效果图
    技术分享

Fresco(各种特效)——播放gif

标签:fresco   frescogif   androidgif   android   

原文地址:http://blog.csdn.net/yy1300326388/article/details/45057677

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!