最佳答案
有人能解释一下为什么吗
public void addView(View child) {
child.setDrawingCacheEnabled(true);
child.setWillNotCacheDrawing(false);
child.setWillNotDraw(false);
child.buildDrawingCache();
if(child.getDrawingCache() == null) { //TODO Make this work!
Log.w("View", "View child's drawing cache is null");
}
setImageBitmap(child.getDrawingCache()); //TODO MAKE THIS WORK!!!
}
始终记录绘图缓存为空,并将位图设置为空?
在设置缓存之前,我必须实际绘制视图吗?
谢谢!