Picasso java.lang.IllegalStateException:方法调用不应该从主线程发生

时间:2014-11-28 01:29:33

标签: android android-asynctask imageview illegalstateexception picasso

我正在尝试使用Picasso从Bitmap

获取三张URL张图片
public void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState);
  setContentView(R.layout.tab2);
  Drawable d1 = new BitmapDrawable(Picasso.with(Tab2.this).load(zestimateImg1).get());
}

我正在使用此代码获取FATAL EXCEPTION。我怀疑它与AsyncTask内应该完成的事实有关,但我不能让它发挥作用。如果使用这是可以避免的,我想在不使用AsyncTask的情况下执行此操作。

如何在不崩溃的情况下运行此代码?

如果最好的方法是使用AsyncTask,那么该解决方案就可以了。

5 个答案:

答案 0 :(得分:9)

您无法在主线程中发出同步请求。如果您不想使用AsyncThread,那么只需将Picasso与目标一起使用。

Picasso.with(Tab2.this).load(zestimateImg1).into(new Target(...);

我建议您保存对目标的引用,如下所示:

Target mTarget =new Target (...); 

这是因为Picasso对它们使用弱引用,它们可能在进程完成之前被垃圾收集。

答案 1 :(得分:7)

以上所有内容都不适用于我

Handler uiHandler = new Handler(Looper.getMainLooper());
    uiHandler.post(new Runnable(){
        @Override
        public void run() {
            Picasso.with(Context)
                    .load(imageUrl)
                    .into(imageView);
        }
    });

希望它可能对某人有用

答案 2 :(得分:3)

仅供记录:

Picasso.with(context).load(url).into(new Target() {
    @Override
    public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from) {
        Log.i(TAG, "The image was obtained correctly");
    }

    @Override
    public void onBitmapFailed(Drawable errorDrawable) {
        Log.e(TAG, "The image was not obtained");
    }

    @Override
    public void onPrepareLoad(Drawable placeHolderDrawable) {
        Log.(TAG, "Getting ready to get the image");
        //Here you should place a loading gif in the ImageView
        //while image is being obtained.
    }
});

来源:http://square.github.io/picasso/

启动请求后始终会调用

onPrepareLoad()from可以是“DISK”,“MEMORY”或“NETWORK”,以指示从中获取图像的位置。

答案 3 :(得分:0)

尝试一下:

Handler uiHandler = new Handler(Looper.getMainLooper());
uiHandler.post(new Runnable(){
    @Override
    public void run() {
        Picasso.with(Context)
                .load(imageUrl)
                .into(imageView);
    }
});

答案 4 :(得分:0)

这与answer of Juan José Melero Gómez相同,但具有 kotlin

MailItem.Sender.EntryId