Android如何将相对布局的背景设置为带滑动的gif

时间:2016-05-30 15:23:02

标签: android android-glide

为了测试,我下载了下面的图片并放入了我的drawable文件夹,当我使用滑行时,我可以在活动中心看到ImageView

enter image description here

但是当我尝试setBackground时,它会变成静态图像或出错

  setContentView(R.layout.activity_main);
    ImageView ivImg = new ImageView(this);//to hold 

         RelativeLayout r = (RelativeLayout) findViewById(R.id.middleRlayout);//the layout of activityt

            ivImg = (ImageView) findViewById(R.id.middle);//middle is id of img


            Glide.with(this)
                    .load(R.drawable.giphy)
                    .asGif()
                    .crossFade()
                    .placeholder(R.drawable.giphy);

            if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.JELLY_BEAN) {
                //noinspection deprecation
                r.setBackgroundDrawable(R.drawable.giphy);
            } else {
                r.setBackground(ivImg);
            }

我为Mauker的答案编辑了我的代码:

        RelativeLayout r = (RelativeLayout) findViewById(R.id.middler);
        ImageView ivImg = new ImageView(this);
        ivImg = (ImageView) findViewById(R.id.middle);
        GlideDrawableImageViewTarget imageViewTarget = new       GlideDrawableImageViewTarget(ivImg);
        Glide.with(this)
                .load(R.drawable.giphy)
                .crossFade()
                .placeholder(R.drawable.giphy)
                .into(imageViewTarget);

        if (android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.JELLY_BEAN) {
            //noinspection deprecation
            r.setBackgroundDrawable(R.drawable.giphy);
        } else {
            r.setBackground(imageViewTarget);
        }

我的负载和占位符是一样的吗?和setbackground不接受作为参数。

1 个答案:

答案 0 :(得分:1)

尝试使用Glide的http://www.developer.com/ws/android/connecting-your-android-device-to-eclipse.html

它看起来像这样:

ImageView ivImg = findViewById(R.id.imageView); 
GlideDrawableImageViewTarget ivTarget = new GlideDrawableImageViewTarget(ivImg);
Glide.with(this)
    .load(R.drawable.giphy) // The image you want to load
    .crossFade()
    .placeholder(R.raw.sample_gif) // The placeholder GIF.
    .into(ivTarget);

编辑:好的,我误解了您的问题,发现您要设置RelativeLayout背景。我的第一个想法是......你不能将动画GIF设置为背景,因为Drawable代表一个“静止图像”。您可以查看GlideDrawableImageViewTarget以获取有关此事项的更多信息。您还可以在Glide的问题跟踪器上查看this question以获取更多信息。

第二次修改:解决问题的一种可能方法是将上面的代码与下面的布局结合起来:

<?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">


    <!-- Use this ImageView to load your background image-->
    <ImageView
        android:id="@+id/imageView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="centerCrop"
        android:src="@drawable/gray"/>

    <!-- Place the rest of your UI elements here, on this inner RelativeLayout. Like the sample below -->
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin">

        <TextView
            android:id="@+id/tv_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="My sample text"
            android:textColor="#ffffff"
            android:layout_centerHorizontal="true" />

        <Button
            android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Click me!"
            android:layout_below="@+id/tv_text"
            android:layout_centerHorizontal="true" />

    </RelativeLayout>
</RelativeLayout>

您的屏幕看起来像这样:

this related issue