公告
财富商城
积分规则
提问
发文
2019-02-16 04:58发布
我欲成王,谁敢阻挡
I am doing app for Jewellery shop
I want to set a gif image as background of my app.
Is it possible to set?
Yes, you can set the gif image but this will not animate your gif image. You need to explicitly extract the gif image into all frame and then using animate you image as gif here is the example of
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false" > <item android:drawable="@drawable/framelayout1" android:duration="1000"/> <item android:drawable="@drawable/framelayout2" android:duration="1000"/> <item android:drawable="@drawable/framelayout3" android:duration="1000"/> <item android:drawable="@drawable/framelayout4" android:duration="1000"/> .... </animation-list>
Why should this be different from using animated Gifs anywhere else on Android? The answer is - it's exactly the same.
Here is how to display animated gifs on Android: Display Animated GIF
最多设置5个标签!
Yes, you can set the gif image but this will not animate your gif image. You need to explicitly extract the gif image into all frame and then using animate you image as gif here is the example of
Why should this be different from using animated Gifs anywhere else on Android? The answer is - it's exactly the same.
Here is how to display animated gifs on Android: Display Animated GIF