Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为骑自行车的人开发一个Track Routes应用程序。因此,无论在地图上绘制什么路线,我都希望该屏幕截图与该路径一起用于与社交媒体共享。
但我没有得到地图的屏幕截图。
谁知道怎么截屏Google Map V2。
Google Map V2
getDrawingCache()每个视图都提供了一个调用方法。您可以尝试以下代码。
getDrawingCache()
MapView map = (MapView) findViewById(R.id.map_view); map.buildDrawingCache(); Bitmap bitmap = map.getDrawingCache(); map.destroyDrawingCache();
你现在有bitmap。你可以随心所欲地使用它。
bitmap