user3689720
user3689720

Reputation: 311

Failed Binder Transaction No Noticeable Problems

If I'm getting a Failed Binder Transaction error but it's not noticeably affecting the functionality, does it still matter?

Is it making my app less efficient?

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

This error happens at the start of an activity where I load facebook photos into image views using Picasso. Based on some questions on stack overflow, I'm guessing it has to do with that:

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);

Thank you for your time.

Upvotes: 1

Views: 1072

Answers (1)

Alex Lockwood
Alex Lockwood

Reputation: 83311

The Binder transaction likely failed because it was too large. Try scaling down the image beforehand, and refer to this question for some more information.

Upvotes: 2

Related Questions