4

是否可以在 Google Maps API v2 中设置自定义颜色标记?我有一个白色可绘制资源,我想对其应用颜色过滤器。我试过这个:

String color = db.getCategoryColor(e.getCategoryId());
Drawable mDrawable = this.getResources().getDrawable(R.drawable.event_location); 
mDrawable.setColorFilter(Color.parseColor(Model.parseColor(color)),Mode.SRC_ATOP);
map.addMarker(new MarkerOptions().position(eventLocation)
    .title(e.getName()).snippet(e.getLocation())
    .icon(BitmapDescriptorFactory.fromBitmap(((BitmapDrawable) mDrawable).getBitmap())));

但它不起作用。它只显示没有自定义颜色的白色标记。我传递给 setColorFilter() 的“颜色”字符串的值采用“#RRGGBB”的形式。

4

1 回答 1

15

我在这里找到了答案:https ://groups.google.com/forum/#!topic/android-developers/ KLaDMMxSkLs 您应用于 Drawable 的 ColorFilter 不直接应用于位图,它应用于用于绘制渲染位图。所以修改后的工作代码如下所示:

String color = db.getCategoryColor(e.getCategoryId());
Bitmap ob = BitmapFactory.decodeResource(this.getResources(),R.drawable.event_location);
Bitmap obm = Bitmap.createBitmap(ob.getWidth(), ob.getHeight(), ob.getConfig());
Canvas canvas = new Canvas(obm);
Paint paint = new Paint();
paint.setColorFilter(new  PorterDuffColorFilter(Color.parseColor(Model.parseColor(color)),PorterDuff.Mode.SRC_ATOP));
canvas.drawBitmap(ob, 0f, 0f, paint);

...现在我们可以添加 obm 作为彩色地图标记:

map.addMarker(new MarkerOptions().position(eventLocation)
    .title(e.getName()).snippet(e.getLocation())
    .icon(BitmapDescriptorFactory.fromBitmap(obm)));
于 2013-09-18T13:27:51.627 回答