0

我清楚地获得了地图上标记的名称,但我想增加地图widthheight的标记名称。

当我将标记名称写为“yyyyy”时,文本切割并显示在地图上,如“uuuuu”。

我该如何进行?任何相关链接或示例代码。

我的代码

私有位图 drawTitleOnMarkerIcon(MarkingInfo markingInfo) { 位图 bm = BitmapFactory.decodeResource(getResources(), AddLocationTypeIcon.getIcon(markingInfo.getType())).copy(Bitmap.Config.ARGB_8888, true);

    Canvas canvas = new Canvas(bm);
    Paint paint = new Paint();
    paint.setColor(Color.DKGRAY);
    paint.setTextSize(18f);
    paint.setFakeBoldText(true);
    paint.setTextAlign(Align.LEFT);
    paint.setFilterBitmap(true);
    paint.setAntiAlias(true);
    paint.setDither(true);
    paint.setFilterBitmap(true);
    canvas.drawText(markingInfo.getName(), 0, bm.getHeight(), paint);

    BitmapDrawable draw = new BitmapDrawable(getResources(), bm);
    return draw.getBitmap();
}
4

0 回答 0