2

假设我们有一个简单的 LinearLayout,它具有垂直方向,大小宽度:100dp,高度:100dp

布局内部有 10 个 TextView(宽度:fill_parent,高度:wrap_content,max_lines = 1,scroll_horizo​​ntally = 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);
            }
        }
    }

}`
4

1 回答 1

0

试试下面的代码。它应该可以工作,但我没有测试过,所以我可能错了:

class ClippedLinear extends LinearLayout {

    public ClippedLinear(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        boolean status = false;
        for (int i = getChildCount() - 1; i > 0; i--) {
            if (status) {
                continue;
            }
            final View child = getChildAt(i);
            final int childHeight = child.getMeasuredHeight();
            if (childHeight == 0) {
                child.setVisibility(View.GONE);         
            } else {                
                child.measure(widthMeasureSpec, heightMeasureSpec);
                if (childHeight < child.getMeasuredHeight()) {                  
                    child.setVisibility(View.GONE);
                }
                status = true;
            }
        }
    }

}
于 2012-11-21T16:29:56.870 回答