五陵年少金市东,银鞍白马渡春风。这篇文章主要讲述android 常见错误集锦相关的知识,希望能为你提供帮助。
1、在非UI线程中创建fragment对象,然后start(fragment),在fragment的操作中用到了handler,这一会报错,handler can‘t create before loop.prepare()的错误。
【android 常见错误集锦】原因:fragment 在子线程中创建,默认是绑定子线程的loop,而子线程默认是不执行loop.prepare,更不能更新UI,因此要在主线程中new fragment,设置为final,然后再在子线程中使用start (fragment)。
推荐阅读
- Appium-desktop安装与使用
- Spring中ApplicationContext与BeanFactory容器的区别
- applicationContext.xml配置文件
- **Mapper.xml配置文件(不同情况不同配置)
- android 真机调试时ADB.exe 未响应解决办法
- adb获取Android性能数据
- Android .9 图片
- AutoMapper.Mapper.CreateMap报“System.NullReferenceException: 未将对象引用设置到对象的实例。”异常复现
- 在springmvc中 @RequestMapping(value=https://www.songbingjia.com/android/{"", "/"})表示的意思