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

how to show gif on background image in android studio

我想将 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 视图和布局背景中都使用了背景图像,但在这两种情况下都没有显示背景。

这可以通过相对布局实现,取一个图像视图并将其高度和宽度设置为 match_parent,然后向该图像视图添加背景,最后将您的 gif 视图添加到图像视图下方,这基本上会将其对齐到顶部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>

Why you are seeing GIF Image only, not your background image?

因为

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。

希望这对你有所帮助。