getDrawingCache总是返回null,即使我做了人们在stackoverflow上推荐的所有内容

时间:2012-05-24 20:35:35

标签: android bitmap compression

我觉得我已经尝试了一切。最后一件事让我想到:我需要root来做getDrawingCache吗?我想我不应该这样,因为当我玩它并在onClick中尝试不同的活动时,这对我有用(即使它只保存了按钮背景)。 GraphView是我的类在Canvas中绘制图形。我没有忘记添加

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>       

我试过只使用bm.compress(Bitmap.CompressFormat.PNG,100,fOut);没有try和catch,它给出了null异常。

以下是代码:

        GraphView graphView = new GraphView(this, y, "Dive Planner", horlabels, verlabels, GraphView.LINE, x, Pspotreba, pocetBodu, varovani);
    setContentView(graphView);




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

        graphView.setDrawingCacheEnabled(true);
        graphView.buildDrawingCache();
        Bitmap bm=Bitmap.createBitmap(graphView.getDrawingCache(true));
        //I have also tried Bitmap bm=graphView.getDrawingCache(true); and all the combinations (using/not using the code above)




        FileOutputStream fOut = null;

        try {   
                File f = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+ File.separator + "DivePlanner" + File.separator);
                if(!f.exists()) f.mkdirs();
                File dive = new File(f, "Dive.png");

                fOut = new FileOutputStream(dive);
           }
        catch (Exception e) {
                Toast.makeText(this, "Error2", Toast.LENGTH_SHORT).show();
           }


        try {
                bm.compress(Bitmap.CompressFormat.PNG, 100, fOut);
                fOut.flush();
                fOut.close();
                Toast.makeText(this, "Ponor uložen", Toast.LENGTH_SHORT).show();
            } 
        catch (Exception e) 
            {
                Toast.makeText(this, "Error", Toast.LENGTH_SHORT).show();
            }

我很抱歉发布了类似的问题(我之前已经发布了这样的问题,但问题仍然没有答案,也许我没有解释它或其他什么,所以这是一个新的尝试)。这是我在学士论文中需要完成的最后一件事。我需要在下周二准备好。除此之外,我的代码中的其他所有工作都很好。如果您能提供帮助,请提前致谢。

0 个答案:

没有答案