您好我使用毕加索加载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);
对于这段代码,我想给gif图像赋予高度和宽度。任何人都可以帮助实现这个目标
答案 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);