如何在CustomView中正确实现onLayout()方法?

时间:2016-06-18 12:21:41

标签: android android-custom-view

我有一个自定义视图,即扩展ViewGroup。我必须实现onLayout方法是合乎逻辑的。我试着查看thisthis个答案,但实际上无法理解我需要做什么。

一些临时信息:

我有一个ViewGroup,所有传递给此ViewGroup 的数据都通过 Adapter传递。它与ListView & Adapter通信机制非常相似。

enter image description here

我的情况是一样的

enter image description here

当我查看上述问题的答案时,我已经提到在布局之前ViewGroup知道他有多少孩子的数量。

final int childCount = getChildCount();

在我的情况下,我不知道如何告诉ViewGroup

"Hey you have <value> children!".

所以我需要对onLayout实施手册进行更多解释。

0 个答案:

没有答案