含蓄手套

文章
7
资源
0
加入时间
3年0月8天

解决在子线程中显示Toast时出现Can‘t toast on a thread that has not called Looper.prepare异常的问题

如果在子线程中直接显示Toast:运行时就会出现如下异常:java.lang.RuntimeException: Can't toast on a thread that has not called Looper.prepare()原因是Android中不允许在子线程中处理UI。如果要在子线程中处理UI那就要动态转到主线程中执行,所以常用的3个解决方法如下:1.使用Looper。2.如果代码是在Activity中,可以使用runOnUiThread。3.使用rxjava。...

BroadcastReciever中有阻塞调用导致死机

现象: CPU占用率高,系统卡死log:  Skipped 47 frames!  The application may be doing too much work on its main thread.原因: 调用的底层接口中有阻塞:sem_wait(&_uart_state.sem);创建一个线程来运行需要处理的代码:if

jQuery中hide()方法用法实例

本文实例讲述了jQuery中hide()方法用法。分享给大家供大家参考。具体分析如下: 此方法可以将匹配元素隐藏。 hid