private void initUI() {
TableLayout layout = (TableLayout)this.findViewById(R.id.content);
game.initBoard();
Grid[][] board = game.getBoard();
for (int i = 0; i < 10; i++) {
TableRow tr = new TableRow(this);
for (int j = 0; j < 10; j++) {
Grid g = board[i][j];
g.setMoveCount(Game.Y-1);
Button btn = new Button( this );
btn.setText(Integer.toString(j));
    btn.setBackgroundColor(colorMap.get(g.getNumber()));
    tr.addView(btn);
}
layout.addView(tr);
}
}我是十行十列的表格, 怎么显示出来一部份显示不出来呢?