android 中的布局间距是什么

what is layout gutter in android

ViewGroup class 谈论装订线。我知道英语中 gutter 的意思,因此我对他们在说什么有一些模糊的概念。但是我不太明白他们的意思。

我相信他们谈论的上下文只是一个转储视图的区域。

In the example:

Here is a complete implementation of a custom ViewGroup that implements a simple FrameLayout along with the ability to stack children in left and right gutters.

public class CustomLayout extends ViewGroup {
    /** The amount of space used by children in the left gutter. */
    private int mLeftWidth;

    /** The amount of space used by children in the right gutter. */
    private int mRightWidth;
}

因此,他们展示的所有示例都是如何制作一分为二的布局,其中 children 可以放置在左侧或右侧。他们选择称呼他们 "gutters".

然后在示例中,他们应该如何测量出左侧 "gutter" 和右侧 "gutter" 的 children。也就是说,在布局的左侧和布局的右侧指定了一个区域。

除此之外,这不是 ViewGroups 或任何其他布局中使用的常用术语。它用于描述他们在示例中构建的自定义 ViewGroup