假设我们有一个简单的 LinearLayout,它具有垂直方向,大小宽度:100dp,高度:100dp
布局内部有 10 个 TextView(宽度:fill_parent,高度:wrap_content,max_lines = 1,scroll_horizontally = true,ellipsize = end)。每个文本视图都是可见的,并填充有 14dp 文本“What a text”。android 设备的最终密度无关紧要。大多数 TextView 将正确显示,但由于强制布局大小,其中一些将不可见或被裁剪。
目标是:检测剪裁视图并隐藏它们。
我尝试使用自定义 LinearLayout 子类,在布局阶段每个子视图都被测量并与目标大小进行比较。问题是测量调用会更改内部视图测量值 - 如果子视图不是简单视图而是 ViewGroup - 它不会正确显示。据我所知 - 在测量阶段之后 - 应该有布局阶段。但是一切都已经发生在自定义 LinearLayout 的布局阶段。
编辑:
好的,简化我的问题 - 我想要一个 LinearLayout 或一般来说 - 一个 ViewGroup,它不会绘制部分可见的孩子。
自定义布局类代码:
public final class ClipAwareLinearLayout extends LinearLayout
{
public ClipAwareLinearLayout(Context context, AttributeSet attrs)
{
super(context, attrs);
}
public ClipAwareLinearLayout(Context context)
{
super(context);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b)
{
super.onLayout(changed, l, t, r, b);
final int width = r - l;
final int height = b - t;
final int count = getChildCount();
final int msWidth = MeasureSpec.makeMeasureSpec(width, MeasureSpec.AT_MOST);
final int msHeight = MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST);
View child;
int measuredHeight;
int childHeight;
for (int i = 0; i < count; ++i)
{
child = getChildAt(i);
if (child != null)
{
childHeight = child.getHeight();
child.measure(msWidth, msHeight);
measuredHeight = child.getMeasuredHeight();
final boolean clipped = (childHeight < measuredHeight);
child.setVisibility(clipped ? View.INVISIBLE : View.VISIBLE);
}
}
}
}`