首页 > 其他 > 详细

Looper Could not create wake pip

时间:2014-10-29 10:22:48      阅读:684      评论:0      收藏:0      [点我收藏+]

日志打印

A/Looper(31455): Could not create wake pipe. errno=24


A/Looper(1960): Could not create wake pipe. errno=24

A/libc(1960): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1)


A/Looper(16848): Could not create wake pipe. errno=24

App直接飞掉

 

问题:

Native Looper 初始化失败

 

根据日志和APP操作查找Looper.preare();出现的地方

bubuko.com,布布扣
    public static void showToast(final String toast, final int showTimeFlag, final Context context)
    {
//        new Thread(new Runnable()
//        {
//            @Override
//            public void run()
//            {
//                Looper.prepare();
                Toast.makeText(context, toast, showTimeFlag).show();
//                Looper.loop();
//            }
//        }).start();
    }
View Code

 

Looper Could not create wake pip

原文:http://www.cnblogs.com/bitter/p/4058678.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!