我想将 ScrollView 内的整个滚动布局转换为 Bitmap
<ScrollView...>
<RelativeLayout android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
...>
</RelativeLayout>
</ScrollView>
如果内容不滚动,则此代码效果很好:
RelativeLayout content = (RelativeLayout) findViewById(R.id.content);
content.setDrawingCacheEnabled(true);
content.buildDrawingCache();
Bitmap bm = content.getDrawingCache();
但如果内容正在滚动,则getDrawingCache()
返回 null。
关于如何将滚动视图导出到位图的任何建议?