android Glide加载gif动图和本地视频,Java

droid Glide加载gif动图和本地视频,Java

//从手机存储本地加载视频
String filePath = "/storage/emulated/0/Pictures/my_video.mp4";
Glide  
    .with( context )
    .load( Uri.fromFile( new File( filePath ) ) )
    .into( imageView );



//加载gif
Glide  
    .with( context )
    .load( gifUrl )
    .asGif()
    .error( R.drawable.gif_error )
    .into( imageView );

https://zhangphil.blog.csdn.net/article/details/77561981https://zhangphil.blog.csdn.net/article/details/77561981

https://zhangphil.blog.csdn.net/article/details/45561983https://zhangphil.blog.csdn.net/article/details/45561983

猜你喜欢

转载自blog.csdn.net/zhangphil/article/details/129451106