我正在使用基于设备 LatLngBounds 百分比 的填充集将相机动画化为 width,以便它在小型设备上工作。

这甚至适用于具有 4 英寸显示器的小型设备,但它在 Android 7.0 中的多窗口模式和之前支持多窗口模式的设备上失败,例如。银河 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 中正确设置填充以在所有设备宽度和多窗口模式下工作?

最佳答案

解决方案是选择宽度和高度之间的最小度量,因为在多窗口模式下,高度可以小于宽度:

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);
}

10-08 14:00