如何给动态生成按钮一个id?

时间:2014-09-10 20:17:24

标签: android button generated

您好我使用代码在tablelayout中生成一些按钮。按钮是由此布局生成的,因此它们都没有id。所以这是我的问题。我如何给一个特定的按钮id? (例如,第一行中的按钮,第二列应具有id“button2”)

public class MainActivity extends ActionBarActivity {

private static final int NUM_ROWS = 3;
private static final int NUM_COLS = 3;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    populateButtons();
}


private void populateButtons() {
    TableLayout table = (TableLayout) findViewById(R.id.TableLayout);

    for (int row =0; row < NUM_ROWS; row++) {
        TableRow tableRow = new TableRow(this);
        tableRow.setLayoutParams(new TableLayout.LayoutParams(
                TableLayout.LayoutParams.MATCH_PARENT,
                TableLayout.LayoutParams.MATCH_PARENT,
                1.0f));
        table.addView(tableRow);
        for (int col = 0; col < NUM_COLS; col++) {
            Button button = new Button(this);
            tableRow.addView(button);
    }
  } 
}

1 个答案:

答案 0 :(得分:0)

您可以使用View.setId(),但我猜您不必通过ID查找视图,因为您已经了解它们。