ViewGroup onLayout问题

时间:2011-07-27 10:53:13

标签: android viewgroup

我的自定义ViewGroup出现问题。我连续排列了3个孩子并使用Scroller滚动到中间孩子。根据用户的触摸输入,我更改应显示的子项并请求新的布局。然后我按照新的顺序布置孩子。但是当一个孩子在之前的布局中显示出来时,孩子们就会彼此叠加。我检查了孩子们以正确的方式获得布局,我认为旧的布局没有删除,新的孩子只是在旧的布局上绘制。有没有办法确保旧布局被清除或什么?

这是我的代码:

@Override
public boolean onTouchEvent(MotionEvent event) {
    ...
    case MotionEvent.ACTION_UP:
        if(old != current)
            this.requestLayout();
        else
            this.scrollTo(getWidth(), 0);
    ...
}

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
    // show current-1, current, current+1
    int count = 0;
    for(int i = 1; i >= -1; i--) {
        // determine index of child
        // the mod does a modulo
        int index = mod(current-i, getChildCount());
        // position in row from left to right
        this.getChildAt(index).layout(count*this.getWidth(), 0, (count+1)*this.getWidth(), height);
        count++;
    }
    // scroll to middle view
    this.scrollTo(getWidth(), 0);
    ...
}

1 个答案:

答案 0 :(得分:1)

尝试在invalidate()结束时致电onLayout()