这是我的代码
// 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
答案 0 :(得分:0)
我能在这里找到答案。因为我在onCreate()
中调用了该方法Screen capture inside the method onCreate not working in android