在Android中显示gif全屏有多种方法,以下是一种常用的方法:
<ImageView
android:id="@+id/gifImageView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
ImageView gifImageView = findViewById(R.id.gifImageView);
Glide.with(this)
.asGif()
.load(R.drawable.your_gif_resource)
.into(gifImageView);
这样就可以在Android应用中显示全屏的gif图片了。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: 如何避免Android中wait死锁