Failed binder transaction when putting an bitmap dynamically in a widget
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 … Read more