android how to get view's drawingcache which view is heighter than screen

326 Views Asked by At

I have a ScrollView layout with "layout_width="match_parent",layout_height="match_parent"",and it have a child LinearLayout.the child is heighter than the screen.I want to get the child's bitmap,but use getDrawingCache() only get the picture which height equal the screen ,how can i get the child's complete picture.

1

There are 1 best solutions below

0
On
public static Bitmap loadBitmapFromView(View v) {
    Bitmap b = Bitmap.createBitmap( v.getLayoutParams().width, v.getLayoutParams().height, Bitmap.Config.ARGB_8888);                
    Canvas c = new Canvas(b);
    v.layout(0, 0, v.getLayoutParams().width, v.getLayoutParams().height);
    v.draw(c);
    return b;
}

How about drawing the view on a canvas ?