无法在Android应用中显示动画gif图像

时间:2017-10-11 04:03:13

标签: android

我试图在我的应用中显示.gif图片。但它不起作用,没有任何东西在那里显示。我也在依赖中添加了滑动库。我现在该怎么办?

这里是VegetableActivity.java文件

public class VegetableActivity extends Activity{
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_vegetable);
        ImageView load_Image = (ImageView)findViewById(R.id.load_Image);

        Glide.with(this)
                .load("https://media.giphy.com/media/m80Q4HTDNPFHq/giphy.gif")

                .into(load_Image);


    }
}

这里是布局xml文件activity_vegetable.xml

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/activity_vegetable"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.emma.kidbox.VegetableActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="THIS IS AN EXAMPLE OF GLIDE LIBRARY IN ANDROID"
        android:fontFamily="sans-serif-condensed"
        android:id="@+id/textView"
        android:textSize="30dp"/>

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/load_Image"
        android:layout_below="@+id/textView"
        android:layout_centerHorizontal="true"/>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

尝试使用.asGif() Glide方法在Imageview中加载gif

Glide.with(this)
     .load("https://media.giphy.com/media/m80Q4HTDNPFHq/giphy.gif")
     .asGif()
     .into(load_Image);