java.lang.RuntimeException:无法在未调用Looper.prepare()的线程内创建处理程序错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.RuntimeException:无法在未调用Looper.prepare()的线程内创建处理程序错误相关的知识,希望对你有一定的参考价值。
SongList Code in the image无法理解错误究竟是什么以及导致错误的原因。错误如下所示。
W/System.err: java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
W/System.err: at android.os.Handler.<init>(Handler.java:200)
W/System.err: at android.os.Handler.<init>(Handler.java:114)
W/System.err: at android.app.Activity.<init>(Activity.java:754)
W/System.err: at android.app.ListActivity.<init>(ListActivity.java:175)
W/System.err: at com.example.vipul.finalproject.PlayListActivity.<init>(PlayListActivity.java:0)
W/System.err: at com.example.vipul.finalproject.SongList.scanSongs(SongList.java:296)
W/System.err: at com.example.vipul.finalproject.activities.ActivityMenuMain$ScanSongs.doInBackground(ActivityMenuMain.java:299)
W/System.err: at com.example.vipul.finalproject.activities.ActivityMenuMain$ScanSongs.doInBackground(ActivityMenuMain.java:289)
W/System.err: at android.os.AsyncTask$2.call(AsyncTask.java:295)
W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:237)
W/System.err: at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:234)
W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
W/System.err: at java.lang.Thread.run(Thread.java:818)
答案
The best explanation on why你需要一个线程上的looper来保存指令,另一个线程来执行它们。在多线程应用程序中,任务可能在执行其他任务时出现。
另一答案
请参阅this article以了解整个Looper
/ Handler
关系。
长话短说,你的Thread#run()
方法必须遵循这样的结构:
new Thread(new Runnable() {
@Override
public void run() {
Looper.prepare();
mHandler = new Handler();
Looper.loop();
}
}).start();
以上是关于java.lang.RuntimeException:无法在未调用Looper.prepare()的线程内创建处理程序错误的主要内容,如果未能解决你的问题,请参考以下文章