Qualcuno potrebbe provare a spiegarmi il motivo
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!!!
}
SEMPRE registra che la cache di disegno è nulla e imposta la bitmap su zero?
Devo effettivamente disegnare la vista prima che la cache sia impostata?
Grazie!
getDrawingCache()
usoView#draw
perCanvas
avvicinarti