本文介绍了如何从谷歌地图V2获取快照的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道知道如何从SupportMapFragment获取快照。我不知道。请帮助。
I am wondering to know about how to get snapshot from SupportMapFragment. I have no idea. Please help.
感谢您提前。
推荐答案
您可以尝试走片段查看的屏幕截图:
You can try to take a screen shot of the fragment View:
View view = findViewById(R.id.fragmentId);
view.setDrawingCacheEnabled(true);
Bitmap bitmap = view.getDrawingCache();
BitmapDrawable bitmapDrawable = new BitmapDrawable(bitmap);
我没有测试过。
这篇关于如何从谷歌地图V2获取快照的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!