- 依赖的gif项目
<u>https://github.com/Cutta/GifView.git</u>
<u>https://github.com/Cutta/GifView</u>
-
使用方式
-
解压
-
将GifView目录下的library拷贝到需要引用显示gif的工程目录下,如ZJMachineSNFaceAndroid,
- 在ZJMachineSNFaceAndroid工程中导入library
File->New->import module->
image.png- ZJMachineSNFaceAndroid工程目录下的build.gradle内增内容有
allprojects内增加 maven { url "<u>https://jitpack.io</u>" }
image.png- app内的build.gradle内增加内容有
dependencies 增加 compile project(':mylibrary')
repositories增加maven { url "<u>https://jitpack.io</u>" }
image.png- 使用的界面中增加
xmlns:custom="http://schemas.android.com/apk/res-auto"
<com.cunoraz.gifview.library.GifView
android:id="@+id/gif1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
custom:gif="@mipmap/dg" />
image.png- 代码使用
网友评论