最终更新
功能请求已由 Google 完成。请在下面查看此答案。
原始问题
使用旧版本的 Google Maps Android API,我能够捕获谷歌地图的屏幕截图以通过社交媒体分享。我使用以下代码捕获屏幕截图并将图像保存到文件中,效果很好:
public String captureScreen()
{
String storageState = Environment.getExternalStorageState();
Log.d("StorageState", "Storage state is: " + storageState);
// image naming and path to include sd card appending name you choose for file
String mPath = this.getFilesDir().getAbsolutePath();
// create bitmap screen capture
Bitmap bitmap;
View v1 = this.mapView.getRootView();
v1.setDrawingCacheEnabled(true);
bitmap = Bitmap.createBitmap(v1.getDrawingCache());
v1.setDrawingCacheEnabled(false);
OutputStream fout = null;
String filePath = System.currentTimeMillis() + ".jpeg";
try
{
fout = openFileOutput(filePath,
MODE_WORLD_READABLE);
// Write the string to the file
bitmap.compress(Bitmap.CompressFormat.JPEG, 90, fout);
fout.flush();
fout.close();
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
Log.d("ImageCapture", "FileNotFoundException");
Log.d("ImageCapture", e.getMessage());
filePath = "";
}
catch (IOException e)
{
// TODO Auto-generated catch block
Log.d("ImageCapture", "IOException");
Log.d("ImageCapture", e.getMessage());
filePath = "";
}
return filePath;
}
但是,API V2 使用的新 GoogleMap 对象没有 MapView 那样的“getRootView()”方法。
我试图这样做:
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.basicMap);
View v1 = mapFragment.getView();
但我得到的截图没有任何地图内容,看起来像这样:
有人知道如何截取新的 Google Maps Android API V2 的屏幕截图吗?
更新
我也尝试通过这种方式获取 rootView:
View v1 = getWindow().getDecorView().getRootView();
这会生成一个屏幕截图,其中包含屏幕顶部的操作栏,但地图仍然是空白的,就像我附加的屏幕截图一样。
更新
已向 Google 提交功能请求。如果这是您希望谷歌在未来添加的内容,请在功能请求中添加星标: 向 Google Maps API V2 添加屏幕截图功能