Java SWT:如何将 Table 中的列内容居中?

Java SWT: How to center content of a column in a Table?

我需要将 table 第四列单元格的内容居中,现在它们从左边开始。

这是table:

    Table membersTable = new Table(clubComposite, SWT.BORDER | SWT.CHECK | SWT.FULL_SELECTION);
    membersTable.setLinesVisible(true);
    membersTable.setHeaderVisible(true);
    membersTable.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));

    TableColumn tblclmnName = new TableColumn(membersTable, SWT.NONE);
    tblclmnName.setWidth(150);
    tblclmnName.setText("Nombre");

    TableColumn tblclmnCommonPhoneNumber = new TableColumn(membersTable, SWT.NONE);
    tblclmnCommonPhoneNumber.setWidth(120);
    tblclmnCommonPhoneNumber.setText("Teléfono");

    TableColumn tblclmnCommonMoney = new TableColumn(membersTable, SWT.NONE);
    tblclmnCommonMoney.setWidth(150);
    tblclmnCommonMoney.setText("Participación Habitual");

    TableColumn tblclmnPayed = new TableColumn(membersTable, SWT.CENTER);
    tblclmnPayed.setWidth(50);
    tblclmnPayed.setText("Pagado"); 

    // populate Table
    for (int i=0; i<50; i++) {
        TableItem tableItem = new TableItem(membersTable, SWT.CENTER);                  
        tableItem.setText(new String[] {"person "+i, "610610620", "100", ""});
        tableItem.setImage(3, uncheckedImage);
    }

我试过这样做:

TableColumn tblclmnPayed = new TableColumn(membersTable, SWT.CENTER);

但它似乎只将列标题居中,而不是内容。

在 Java SWT 上可以实现我的需求吗?

为了使列的内容居中,您还需要为 TableItem 指定 SWT.CENTER 样式位。

例如:

final Table table = new Table(shell, SWT.BORDER | SWT.V_SCROLL | SWT.FULL_SELECTION);
table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
table.setHeaderVisible(true);
table.setLinesVisible(true);

final TableColumn column1 = new TableColumn(table, SWT.NONE);
column1.setText("Column 1");
column1.setWidth(75);

final TableColumn column2 = new TableColumn(table, SWT.NONE);
column2.setText("Column 2");
column2.setWidth(75);

final TableColumn column3 = new TableColumn(table, SWT.CENTER);
column3.setText("Column 3");
column3.setWidth(75);

for (int i = 0; i < 5; i++) {
    new TableItem(table, SWT.CENTER).setText(new String[] { "a", "b", "c" });
}

请注意,这只会影响同样指定了 SWT.CENTER 的列的内容,而不会影响其他列的内容。


编辑 关于居中图像:

我认为不可能通过样式位将图像置于 table 行的中心,因为它们似乎被忽略了。

一种替代方法是使用绘画侦听器绘制具有正确填充的图像,以使图像在列中居中(请参阅:How to align image to center of table cell (SWT Table))。请注意,使用此方法时,行不会根据图像的大小调整大小,因此除非您的图像与行的高度 tiny/the 相同,否则您必须做一些额外的工作以保持图像形式被剪切关闭。