无法在未调用Looper.prepare()的线程内创建处理程序:java.lang.RuntimeException

时间:2013-11-13 22:05:30

标签: java android multithreading

我有以下代码在另一个线程中运行一个函数:

Button buttonb = (Button) this.findViewById(R.id.buttonb);
    buttonb.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

        …
                progressBar.setVisibility(View.VISIBLE);

                Thread thread = new Thread() {
                    @Override
                    public void run() {
                        matrixOperation(sourcePhoto);
                    }
                };
                thread.start();

                progressBar.setVisibility(View.INVISIBLE);
        …

        }
    });

但是在跑步时我收到了这个错误:

Can't create handler inside thread that has not called Looper.prepare()

我搜索并发现此错误的一个原因是“您无法从后台线程执行AsyncTask。请参阅“线程规则”部分“但这不是我从主要活动中调用它的后台线程。

请告诉我如何解决这个问题。

1 个答案:

答案 0 :(得分:1)

Handler类使用Looper来执行其调度,而刚刚创建的线程没有关联的looper - 因此出错。

由于您还没有提供处理程序创建代码,我假设您要在主线程上调用代码。在这种情况下,请按以下方式创建Handler

Handler handler = new Handler(Looper.getMainLooper());

计划在Handler上运行的任何内容都将在主线程上运行的主Looper上执行。