Failed binder transaction when putting an bitmap dynamically in a widget

AndroidBitmapWidget

Android Problem Overview


Can anybody tell me the reason for failed binder transaction error? I can see this error message in logcat. I am getting this error while trying to put an bitmap dynamically in a widget...

Android Solutions


Solution 1 - Android

This is caused because all the changes to the RemoteViews are serialised (e.g. setInt and setImageViewBitmap ). The bitmaps are also serialised into an internal bundle. Unfortunately this bundle has a very small size limit.

You can solve it by scaling down the image size this way:

 public static Bitmap scaleDownBitmap(Bitmap photo, int newHeight, Context context) {

 final float densityMultiplier = context.getResources().getDisplayMetrics().density;	    

 int h= (int) (newHeight*densityMultiplier);
 int w= (int) (h * photo.getWidth()/((double) photo.getHeight()));
					    
 photo=Bitmap.createScaledBitmap(photo, w, h, true);

 return photo;
 }

Choose newHeight to be small enough (~100 for every square it should take on the screen) and use it for your widget, and your problem will be solved :)

Solution 2 - Android

You can compress the bitmap as an byte's array and then uncompress it in another activity, like this.

Compress!!

        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
        byte[] bytes = stream.toByteArray(); 
        setresult.putExtra("BMP",bytes);

Uncompress!!

        byte[] bytes = data.getByteArrayExtra("BMP");
        Bitmap bmp = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);

Solution 3 - Android

The Binder transaction buffer has a limited fixed size, currently 1Mb, which is shared by all transactions in progress for the process. Consequently this exception can be thrown when there are many transactions in progress even when most of the individual transactions are of moderate size.

refer this link

Solution 4 - Android

See my answer in [this][1] [1]: https://stackoverflow.com/questions/24285546/failed-binder-transaction-while-passing-bitmap-from-one-activity-to-another/27333282
thread.

intent.putExtra("Some string",very_large_obj_for_binder_buffer);

You are exceeding the binder transaction buffer by transferring large element(s) from one activity to another activity.

Solution 5 - Android

I have solved this issue by storing images on internal storage and then using .setImageURI() rather than .setBitmap().

Solution 6 - Android

The right approach is to use setImageViewUri() (slower) or the setImageViewBitmap() and recreating RemoteViews every time you update the notification.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionEbyView Question on Stackoverflow
Solution 1 - AndroidGalDude33View Answer on Stackoverflow
Solution 2 - AndroidNicolás LoaizaView Answer on Stackoverflow
Solution 3 - AndroiddharamView Answer on Stackoverflow
Solution 4 - AndroidBalaji DubeyView Answer on Stackoverflow
Solution 5 - AndroidMartinCView Answer on Stackoverflow
Solution 6 - AndroidAlexander WoodblockView Answer on Stackoverflow