Android更改谷歌地图缩放按钮样式

时间:2016-08-08 11:09:47

标签: android google-maps debugging

问题是如何获取resources google map,以更改background这些按钮。 所以,我通过调试器找到了解决方案:

View mapView = super.onCreateView(inflater, container, savedInstanceState);   

// Get the button view 
View locationButton = ((View) mapView.findViewById(1).getParent()).findViewById(2);

但我无法理解如何使用调试器

获取ID's次视图

1 个答案:

答案 0 :(得分:0)

不安全地使用findViewById(硬编码)。

更好地禁用本机控制(setZoomControlsEnabled(false))并附加你的(你将拥有完整的访问权限,例如动画,颜色,样式,字符,可绘制等)。