我正在开发一个简单的绘画应用程序,并尝试实现在用户请求时提供更多绘制空间的功能,我认为这可以通过简单地启用我的 CustomView 类的滚动来完成(它包含在 LinearLayout 然后在滚动视图类)。如果我没有通过运行 Chunk 1 调整 CustomView 类的大小,Chunk 2 可以正常工作(它只是保存了一屏绘图。此时,没有滚动。)真可惜!Chunk 1 运行时 Chunk 2 失败(view.getDrawingCache() 返回 null)(此时启用滚动)。我想保存整个视图,包括由于滚动而遗漏的部分。
块 1:
CustomView view = (CustomView) findViewById(R.id.customViewId);
height = 2 * height;
view.setLayoutParams(new LinearLayout.LayoutParams(width, height));
块 2:
CustomView view = (CustomView) findViewById(R.id.customViewId);
view.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache());
view.setDrawingCacheEnabled(false);
这两个代码块是两种不同方法中独立的小部分。
编辑:已解决
经过数十亿的谷歌查询,问题现在得到了解决;)
我提到了这个线程,https: //groups.google.com/forum/?fromgroups=#!topic/android-developers/VQM5WmxPilM 。
我不明白的是 getDrawingCache() 方法对 View 类的大小(宽度和高度)有限制。如果 View 类太大,getDrawingCache() 只返回 null。
因此,解决方案不是使用该方法,而是如下所示。
CustomView view = (CustomView) findViewById(R.id.customViewId);
Bitmap bitmap = Bitmap.createBitmap(view.getMeasuredWidth(),
view.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
Canvas bitmapHolder = new Canvas(bitmap);
view.draw(bitmapHolder);
// bitmap now contains the data we need! Do whatever with it!