我正在使用基于设备LatLngBounds
的百分比的填充设置将相机设置为动态width
,以便它适用于小型设备。
即使在具有4英寸显示器的小型设备上也能正常工作,但是在Android 7.0中的多窗口模式和之前支持多窗口模式的设备中它会失败,例如。 Galaxy S7。
我在多窗口模式下的设备上遇到以下异常:
Fatal Exception: java.lang.IllegalStateException: Error using newLatLngBounds(LatLngBounds, int, int, int): View size is too small after padding is applied.
这是可疑代码:
private void animateCamera() {
// ...
// Create bounds from positions
LatLngBounds bounds = latLngBounds(positions);
// Setup camera movement
final int width = getResources().getDisplayMetrics().widthPixels;
final int height = getResources().getDisplayMetrics().heightPixels;
final int padding = (int) (width * 0.40); // offset from edges of the map in pixels
CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, width, height, padding);
mMap.animateCamera(cu);
}
如何正确设置newLatLngBounds
中的填充以适用于所有设备宽度和多窗口模式?
答案 0 :(得分:6)
解决方法是选择宽度和高度之间的最小度量,因为在多窗口模式下,高度可以小于宽度:
private void animateCamera() {
// ...
// Create bounds from positions
LatLngBounds bounds = latLngBounds(positions);
// Setup camera movement
final int width = getResources().getDisplayMetrics().widthPixels;
final int height = getResources().getDisplayMetrics().heightPixels;
final int minMetric = Math.min(width, height);
final int padding = (int) (minMetric * 0.40); // offset from edges of the map in pixels
CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, width, height, padding);
mMap.animateCamera(cu);
}