尝试以编程方式捕获屏幕时为空指针

时间:2014-03-05 20:32:25

标签: java android xml

这是我的代码

    // create bitmap screen capture
    Bitmap bitmap;
    View v1 = (View)findViewById(R.id.text);
    View rootV = v1.getRootView();
    rootV.setDrawingCacheEnabled(true);
    bitmap = rootV.getDrawingCache();
    rootV.setDrawingCacheEnabled(false);

空值指针出现在bitmap = rootV.getDrawingCache();上,而R.id.text是布局中的textView

1 个答案:

答案 0 :(得分:0)

我能在这里找到答案。因为我在onCreate()

中调用了该方法

Screen capture inside the method onCreate not working in android