如何将相对布局动态插入表布局

时间:2015-01-22 17:21:37

标签: java android android-layout layout dynamic-programming

我是Android编程的新手。我想要一个有3行3列的表格布局(可能我将动态地更改这些数字),每个表格行都有一个相对布局。这类似于Google Play商店中显示的视图,其中显示Play上的新到货等。我尝试使用按钮来实现此目的。但是我想要扩展一个xml文件,将Relative Layout作为根,使用ImageView和TextView。这可能吗?或者,实现这种布局的最佳方法是什么?此外,如何找到膨胀布局的imageview和textview,以便我可以以编程方式添加属性。这就是我的尝试。

private void populateCategoryGrid() {
        TableLayout categoriesLayout;
        TableRow row;
        Button btn_category;  int category_count = 12;
        int NUM_ROW = category_count/3;
        int NUM_COL = category_count/4;

        for (int r=0;r<NUM_ROW;r++) {
            row = new TableRow(this);
            row.setLayoutParams(new TableLayout.LayoutParams(
                    TableLayout.LayoutParams.MATCH_PARENT,
                    TableLayout.LayoutParams.MATCH_PARENT,
                    1.0f
            ));
            categoriesLayout.addView(row);
            for (int c = 0; c <NUM_COL; c++) {
                btn_category = new Button(this);
                btn_category.setId(c);
                btn_category.setPadding(0, 0, 0, 0);
                btn_category.setLayoutParams(new TableRow.LayoutParams(
                        TableRow.LayoutParams.MATCH_PARENT,
                        TableRow.LayoutParams.MATCH_PARENT,
                        1.0f
                ));
                row.addView(btn_category);
            }
        }
    }

1 个答案:

答案 0 :(得分:2)

你几乎通过循环和将按钮膨胀成行来完成所有工作。很少有调整,你已经完成了:

private void populateCategoryGrid() {
    TableLayout categoriesLayout;
    int category_count = 12;
    int NUM_ROW = category_count/3;
    int NUM_COL = category_count/4;
    LayoutInflater inflater = LayoutInflater.from(this);

    // Add rows
    for (int r=0;r<NUM_ROW;r++) {
        TableRow row = new TableRow(this);
        row.setLayoutParams(new TableLayout.LayoutParams(
                TableLayout.LayoutParams.MATCH_PARENT,
                TableLayout.LayoutParams.MATCH_PARENT,
                1.0f
        ));
        // Add inflated layouts
        for (int c = 0; c <NUM_COL; c++) {
            // Inflate layout
            RelativeLayout rl = (RelativeLayout) inflater.inflate(R.layout.rel_layout, null);
            // Modify inflated layout
            ImageView img = (ImageView) rl.findViewById(R.id.img);
            img.setBackgroundColor(Color.RED);
            TextView tv = (TextView) rl.findViewById(R.id.text);
            tv.setText("Some text");
            // Add the modified layout to the row
            row.addView(rl);
        }
        // Add row to the table
        categoriesLayout.addView(row);
    }
}

一些注意事项:

  • 您可以为每个TableRow使用一个局部变量,因为一旦完成该行,您就不会更改其中的任何内容
  • LayoutInflater.inflate返回根视图,您可以findViewById内置任何视图