如何在android studio中的背景图像上显示gif

时间:2019-03-22 06:38:53

标签: java android android-imageview

我想将Gif显示为背景图像的上层。我到底想在背景中显示什么图像,在该图像上我也想显示gif,但是当我运行代码时,我只看到gif背景图像被隐藏了,有人可以告诉我现在该怎么做

我的XML代码在这里

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/ice"
tools:context=".MainActivity">

<pl.droidsonroids.gif.GifImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/gif"
    android:background="@drawable/ice"

    /></android.support.constraint.ConstraintLayout>

我在GifImage视图和Layout背景中都使用了背景图片,但在两种情况下都没有显示背景。

2 个答案:

答案 0 :(得分:0)

这可以通过相对布局来实现,即获取一个imageview并将其高度和宽度设置为match_parent,然后在该viewview中添加背景,最后将您的gif视图添加到该image view下面,这将使它基本上对齐到该imageview的顶部,这应该可以技巧:

<Relativelayout>
<Imageview 
android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/ice"/>
<pl.droidsonroids.gif.GifImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"  //layout added at last will be shown on top
    android:src="@drawable/gif"
    android:background="@drawable/ice"

    />
</Relativelayout>

答案 1 :(得分:0)

  

为什么只看到GIF图片,而不是背景图片?

因为

1) You are setting "width and height" of your GIF image as "match_parent" hence its 
   taking entire screen and you are not been able to see your background image.

2) Still if you want to set your GIF image as match_parent(that Ok!), make sure you 
   use "alpha GIF image or I would say transparent GIF image"

注意:您也可以在线上将当前GIF转换为透明GIF。

希望这对您有所帮助。