int color = color.rgb(255,201,14);mMap = ((MapFragment) getFragmentManager().findFragmentByID(R.ID.map)).getMap();final LatLng PERTH = new LatLng(40,-80);Marker perth = mMap.addMarker(new MarkerOptions() .position(PERTH) .Title("MY PIN") .snippet("MAGGIE EATS SNAKE SKINS") .draggable(true) .icon(BitmapDescriptorFactory.fromresource(R.drawable.pin)) .icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.color)));
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.color)));不起作用.它不允许我在这里插入自定义颜色.我怎样才能做到这一点?谢谢:)
解决方法 defaultMarker()方法允许设置自定义颜色,但只能通过提供色调值.根据androID文档:(Hue) Value must be greater or equal to 0 and less than 360
如果您知道应用主题的十六进制或RGB值,则需要进行一些计算(请参阅example)或仅使用一些free online converter.在您的情况下,色调值将为47.
此外,您无需在代码中设置两次.icon()属性.
总结以上是内存溢出为你收集整理的将地图标记设置为自定义颜色Android全部内容,希望文章能够帮你解决将地图标记设置为自定义颜色Android所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)