我想使用DrawingCache捕获
ImageView的内容.我写了下面的代码.
iv1 = (ImageView)findViewById(R.id.iv1); iv2 = (ImageView)findViewById(R.id.iv2); iv1.setDrawingCacheEnabled(true); Bitmap myScreenshot = iv1.getDrawingCache(); iv2.setImageBitmap(myScreenshot);
但我在屏幕上只得到一张图片.后来我才知道myScreenshot是空的
我看到很多关于同样问题的帖子,但没有适当的解决方案.