Android 安卓-使用毕加索获得图像后设置标记图标

Android 安卓-使用毕加索获得图像后设置标记图标,android,google-maps,Android,Google Maps,我正在使用毕加索从rest服务检索图像: void drawMarker (String imageName) { String imageLocation = "http://172.16.104.118//MyService/images/%s.png"; Picasso.with(this) .load(String.format(imageLocation,imageName)) .int

我正在使用毕加索从rest服务检索图像:

  void drawMarker (String imageName) {
        String imageLocation = "http://172.16.104.118//MyService/images/%s.png";
        Picasso.with(this)
                .load(String.format(imageLocation,imageName))
                .into(imageView);

    }
我想将检索到的图像设置为标记图标,但它只接受位图

marker.icon("HERE");

                mMap.addMarker(marker);

看一看帮助我的感谢看一看帮助我的感谢