如果我收到错误的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);
感谢您的时间。