I need capture a scrollview that exceed the visible UI, I used this code:
ScrollView view2 = (ScrollView)findViewById(R.id.scrollCapture);
view2.setDrawingCacheEnabled(true);
view2.buildDrawingCache();
Bitmap bm = view2.getDrawingCache();
but it only capture showed screen, not the entire layout.
Is there some method to capture whole layout even isnt showed?
Thanks a lot.