我想在应用程序中拥有(地图的)图像并以编程方式添加
它上面的一些层(占位符,路径等)
我认为类似photoshop的图层方法可能会有所帮助,但是我不知道从何开始。
任何简单的示例/教程或文档链接都非常有用:)
谢谢
最佳答案
我给你一个可以建立的简单方法:
创建一个空的位图finalBitmap
。这将是所有图层合成的最终目的地。
创建一个Canvas
以绘制到finalBitmap
。此画布将用于将所有图层绘制到最终位图中。
用您的地图图像创建一个Bitmap
。使用画布将其绘制到finalBitmap
。这将是第1层。
使用相同的方法放置标记,路线等。这些将是第2、3等层。
示例代码:
//The empty Bitmap
finalBitmap = Bitmap.createBitmap(width, height , Bitmap.Config.ARGB_8888);
canvas = new Canvas(finalBitmap );
imageView.setImageBitmap(finalBitmap );
//Create the map image bitmap
Config config = Config.RGB_565;
Options options = new Options();
options.inPreferredConfig = config;
InputStream in = null;
Bitmap bitmap = null;
try {
in = new FileInputStream(fMapImage);
bitmap = BitmapFactory.decodeStream(in);
if (bitmap == null)
throw new RuntimeException("Couldn't load bitmap from asset :" + fMapImage.getAbsolutePath());
} catch (IOException e) {
throw new RuntimeException("Couldn't load bitmap from asset :" + fMapImage.getAbsolutePath());
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
}
}
}
//Draw the map image bitmap
Rect dst = new Rect(pt00.x, pt00.y, ptMM.x, ptMM.y);
canvas.drawBitmap(bitmap, null, dst, null);
//Here draw whatever else you want (markers, routes, etc.)
问候