Android实现显示播放GIF动画_ GIF图片显示
程序员文章站
2021-12-03 07:57:02
...
相信大家都知道、Android默认情况下是不能打开 GIF 图片的、那么有没有一个工具能打开 GIF 图片呢、答案是肯定的、第三方项目 glide 就可以打开 GIF 的图片、下面跟大家分享一下使用 Android Studio 怎么加载 GIF 图片
Java代码
public class MainActivity extends AppCompatActivity { ImageView imageview; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); imageview=(ImageView) findViewById(R.id.image_view); } /** * 用grild加载图片 * @param view */ public void loadimage(View view){ String url="http://p1.pstatp.com/large/166200019850062839d3"; int res= R.drawable.image; Glide.with(this). load(url).placeholder(res). error(R.drawable.eeror). diskCacheStrategy(DiskCacheStrategy.NONE). into(imageview); } }
build.gradle代码
dependencies { compile ´com.github.bumptech.glide:glide:3.7.0´ //加载glide compile fileTree(dir: ´libs´, include: [´*.jar´]) androidTestCompile(´com.android.support.test.espresso:espresso-core:2.2.2´, { exclude group: ´com.android.support´, module: ´support-annotations´ }) compile ´com.android.support:appcompat-v7:25.0.1´ testCompile ´junit:junit:4.12´ }
android 播放gif动画开发实例源代码下载链接: android实现gif动画 密码: gj7v
上一篇: 坚持是一种品格_你不可能输得一无所有
下一篇: PHP JSON数组与对象的换成的理解