0

在谷歌搜索几个小时后,我尝试了各种方法。有些方法似乎对某些人有所帮助,但对我而言却不是。我在这里想念什么?也许是许可?我知道这是一个常见的错误或其他东西,但必须有一个解决方案。

所有的方法都是相似的。

第一的:

GraphicalView v = ChartFactory.getBarChartView(ChartsDuration.this, buildBarDataset(titles, values), renderer, Type.DEFAULT); 
                    v.setDrawingCacheEnabled(true);
                    v.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
                    v.buildDrawingCache(true);
                    Bitmap bitmap = Bitmap.createBitmap(v.toBitmap()); //bitmap is null
                    v.setDrawingCacheEnabled(false);

or this:

                    Bitmap bitmap = Bitmap.createBitmap(v.getDrawingCache()); //bitmap is null

我也尝试了这里的解决方案:

                    v.setDrawingCacheEnabled(true);

                 // this is the important code :)  
                 // Without it the view will have a dimension of 0,0 and the bitmap will be null          
                 v.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), 
                             MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
                 v.layout(0, 0, v.getMeasuredWidth(), v.getMeasuredHeight()); 

                 v.buildDrawingCache(true);
                 Bitmap b = Bitmap.createBitmap(v.getDrawingCache());
                 v.setDrawingCacheEnabled(false); // clear drawing cache

然后这个页面底部的方法:

v.setDrawingCacheEnabled(false);
                    if (!v.isDrawingCacheEnabled()) {
                      v.setDrawingCacheEnabled(true);
                    }
                    if (renderer.isApplyBackgroundColor()) {
                      v.setDrawingCacheBackgroundColor(renderer.getBackgroundColor());
                    }
                    v.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
                    v.getDrawingCache(true);
                    Bitmap b = Bitmap.createBitmap(v.getDrawingCache());

我也没有得到任何运气:

   v.setDrawingCacheEnabled(true);
                    v.requestFocus();
                    v.getRootView();


                    v.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED),
                    MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
                    v.layout(0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());

                    v.buildDrawingCache(true);
                    Bitmap mBitmap = v.getDrawingCache();

位图始终为空。

4

1 回答 1

0

只是一个想法,不确定它是否可行:

将 Achartengine 视图放在另一个视图中(例如 frameLayout ),然后捕获它而不是 Achartengine 视图。

另外,确定您的代码仅在一段时间后运行,所有视图都已自行绘制?为了检查它,尝试获取视图的宽度或高度。

您也没有任何异常或特殊日志吗?

于 2012-06-14T23:42:27.687 回答