本文主要是介绍androiod开发中出现Can't create handler inside thread that has not called Looper.prepare()的错误。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
出现原因:
在线程里面添加了处理UI的代码,比如:findViewById(R.id.textview_title),以及Toast.makeText(MainActivity.this, 测试点不可到达",Toast.LENGTH_SHORT).show()等操作。
解决方案:将类似的这些UI的处理放在Handler里面。
这篇关于androiod开发中出现Can't create handler inside thread that has not called Looper.prepare()的错误。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!