I am to create bitmap of a relative layout having a visible ImageView with two invisible TextViews and one invisible ImageView. But invisible views data was not shown in bitmap. If I set visible all those invisible views it is shown in bitmap, but not if hidden.
I am using below code -
private Bitmap getBitmap(View v) {
Bitmap bmp = null, b1 = null;
RelativeLayout targetView = (RelativeLayout) v;
targetView.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
targetView.buildDrawingCache();
b1 = targetView.getDrawingCache();
bmp = b1.copy(Bitmap.Config.ARGB_8888, true);
targetView.destroyDrawingCache();
return bmp;
}
I also used below link but that also didn't give me expected result.
Getting bitmap from a view visible-invisible
I am really in a fix.
The drawing cache saves a bitmap of what's currently drawn on screen. Naturally, this does not include hidden views.
The key difference between the article you provided in the link, and your code is that in the article, the bitmap cache is constructed for the invisible view.
However, you have a visible parent, which contains invisible views. When you create the drawing cache of the parent, the invisible views are, of course, not rendered.
In order for you invisible views to appear, you need to draw the views yourself in a bitmap, then draw that bitmap inside the bitmap which contins the parent.
Code sample:
Final mentions:
layout(...)
on each one, before callingdraw(...)
in the loop.if the parent view of your invisible views does not occupy the whole screen, then your invisible views will not be drawn at the correct position, since
getLeft()
&getTop()
return the left & top properties in pixels, relative to the parent location. If your invisible views are within a parent which only covers part of the screen, then use instead:fullCanvas.drawBitmap(invisibleViewBitmap, invisibleView.getLeft() + parent.getLeft(), v.getTop() + v.getTop(), null);
Let me know if this works!