如何在android中绘制背景画布相同的颜色

时间:2017-01-09 15:58:38

标签: android

我正在尝试使用一种bg颜色的画布,但它不起作用。 我可以创建一个相同颜色和位图的数组,但如果可能的话,我希望避免这种情况。 RE:Android canvas change background color

 private void addCustomMarker(GoogleMap map, ActivePoint a, LatLng latLng) {
        Bitmap.Config conf = Bitmap.Config.ARGB_8888;
        Bitmap userBmp = Utils.decode(a.mCreatorUser.getmImgBase64Thumb());
        Bitmap dogBmp = Utils.decode(a.mCreatorDog.getmImgBase64Thumb());

        int border_width = 10;

        int width, height = 0;
        width = userBmp.getWidth() + dogBmp.getWidth();
        height = userBmp.getHeight() > dogBmp.getHeight() ? userBmp.getHeight() : dogBmp.getHeight();
        Bitmap cs = Bitmap.createBitmap(width+border_width*2, height+border_width*2, Bitmap.Config.ARGB_8888);

        Canvas canvas1 = new Canvas(cs);

    // modify canvas

        canvas1.drawARGB(0, 0x3F, 0x51, 0xB5);
//        canvas1.drawColor(ContextCompat.getColor(this,R.color.primary), PorterDuff.Mode.CLEAR);

// add marker to Map
        map.addMarker(new MarkerOptions().position(latLng)
                .icon(BitmapDescriptorFactory.fromBitmap(cs))
                // Specifies the anchor to be at a particular point in the marker image.
                .snippet(a.mId)
                .anchor(0.5f, 1));
    }

1 个答案:

答案 0 :(得分:0)

PorterDuff.Mode.CLEAR使其透明,这就是为什么当他们 在地图上时没有看到它们,删除该参数。