自定义布局上的Onlayout方法扩展RelativeLayout

时间:2011-02-13 17:43:12

标签: android relativelayout

在扩展RelativeLayout的自定义布局中覆盖onLayout方法的正确方法是什么? 我试图将所有视图放在一个表格中。我们的想法是用ImageViews填充一行直到它已满,然后继续在新行中。

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
        super.onLayout(changed, l, t, r, b);

        int idOfViewToTheLeft = 1;

        RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(getContext(),);

        ImageView bookmark;
        for(int counter = 1; counter < getChildCount(); counter++) {
            bookmark = (ImageView) findViewById(counter);
            if(counter > 1) {
               if(this.getWidth() > (bookmark.getLeft() + bookmark.getWidth())) {
                   params.addRule(RelativeLayout.RIGHT_OF, bookmark.getId() - 1);
               } else {
                   params.addRule(RelativeLayout.BELOW, idOfViewToTheLeft);
                   idOfViewToTheLeft = bookmark.getId();
               }
            }

            bookmark.setScaleType(ScaleType.CENTER_CROP);
        }
    }
    }

1 个答案:

答案 0 :(得分:9)

我在this演示文稿

中解释如何编写自定义布局(特别是FlowLayout,这是你想要做的)

Video available here