Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
View.view.layout 如何在 Android 中工作?我似乎无法找出一致的行为。如果是定位,为什么需要 4 个坐标而不是 2 个?这是否意味着它可以缩放和定位?
这是布局机制的第二阶段。(首先是测量)。在这个阶段,每个父级调用其所有子级的布局来定位它们。这通常使用存储在度量 pass() 中的子度量来完成。具有子级的派生类应覆盖 onLayout。在这种方法中,他们应该在他们的每个孩子上调用布局。
查看源代码