Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
It'd be great if this worked! – gregm Apr 4 at 14:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.