如何在android中保存绘图画布?

Shr*_*jan 5 android android-widget android-emulator android-layout android-canvas

我正在使用开发者网站的这个API演示,这个演示.

但我很奇怪如何将该图像保存到我的Andrtoid设备.请任何人给代码将该绘制的图像保存到Android设备.

谢谢.

Pra*_*tik 12

试试这段代码

View content = your_view;
content.setDrawingCacheEnabled(true);
content.setDrawingCacheQuality(View.DRAWING_CACHE_QUALITY_HIGH);
Bitmap bitmap = content.getDrawingCache();
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
File file = new File(path+"/image.png");
FileOutputStream ostream;
try {
    file.createNewFile();
    ostream = new FileOutputStream(file);
    bitmap.compress(CompressFormat.PNG, 100, ostream);
    ostream.flush();
    ostream.close();
    Toast.makeText(getApplicationContext(), "image saved", 5000).show();
} catch (Exception e) {
    e.printStackTrace();
    Toast.makeText(getApplicationContext(), "error", 5000).show();
}
Run Code Online (Sandbox Code Playgroud)