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了,但是動畫只能播放一次,不可以循環。

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