I want to draw the Notification contentview, which is a RemoteViews, into a bitmap.
I'm using this code:
private Bitmap getImageOfRemoteViews(RemoteViews rv) {
try {
View view = rv.apply(mContext, null);
view.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());
view.setDrawingCacheEnabled(true);
view.buildDrawingCache(true);
Bitmap screenshot = view.getDrawingCache(true);
return screenshot;
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
the View is build into the bitmap but not the whole view, there is the right part missing.
As it should be: http://imgur.com/vyFdy
As it is: http://imgur.com/DnTsC
By manually setting the layout like:
view.layout(0, 0, 720, 250);
only the background color is added but not the 2 textviews (here: "1:12" and "Info")
Do someone have an idea how to fix this?