Android:如何在毕加索中为gif图像提供高度和宽度

时间:2016-01-05 12:09:01

标签: android height width picasso

您好我使用毕加索加载gif图片(我在加载实际图片或图片网址中的错误之前加载此gif图片)

代码:

/res/drawable/progress_animation.xml

<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/progress_image"
    android:pivotX="50%"
    android:pivotY="50%" />
Picasso.with(context).load("google.com").error(R.drawable.progress_animation).placeholder(R.drawable.progress_animation).into(holder.imageURL);

使用过的图片 Image

对于这段代码,我想给gif图像赋予高度和宽度。任何人都可以帮助实现这个目标

2 个答案:

答案 0 :(得分:0)

您必须使用.resize(width, height),例如:

Picasso.with(context).load("google.com").error(R.drawable.progress_animation).placeholder(R.drawable.progress_animation).resize(30, 30).into(holder.imageURL);

答案 1 :(得分:0)

尝试调整大小()的方法。

Picasso.with(context).load("google.com").resize(50, 50).error(R.drawable.progress_animation).placeholder(R.drawable.progress_animation).into(holder.imageURL);