Android下使用react-native-splash-screen加载gif

感谢大神提供的思路
react-native-splash-screen在github中只提到加载png图片,要加载gif,需借用Android第三方库直接在布局文件中加载gif。

首先在build.gradle文件中添加组件

implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.1'

其次,在布局文件中将ImageView替换成pl.droidsonroids.gif.GifImageView

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <pl.droidsonroids.gif.GifImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="centerCrop"
        android:src="@mipmap/slag_splash" />
</RelativeLayout>

其中src是你gif的路径。这样就可以加载gif了,但是动画只能播放一次,不可以循环。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章