粘合剂交易失败没有明显的问题

时间:2014-06-08 08:06:26

标签: android performance

如果我收到错误的Binder事务错误,但它没有明显影响功能,它仍然重要吗?

这会降低我的应用效率吗?

06-08 00:54:47.110: E/JavaBinder(10110): !!! FAILED BINDER TRANSACTION !!!

此错误发生在活动开始时,我使用Picasso将Facebook照片加载到图像视图中。基于堆栈溢出的一些问题,我猜它与此有关:

String facebookProfilePicUrl = "https://graph.facebook.com/"+item.get(TAG_FACEBOOKID)+"/picture?width=80&height=80";

Picasso.with(mContext)
.load(facebookProfilePicUrl)
.placeholder(R.drawable.ic_action_person)
.into(holder.fbphoto);

感谢您的时间。

1 个答案:

答案 0 :(得分:2)

Binder交易可能因为太大而失败。尝试预先缩小图像,并参考this question获取更多信息。