0
我正在開發一個Eclipse插件,使用表打印出來的視圖。我在各種Eclipse和Ubuntu版本上測試了系統,並且表中的值是可見的。即行適合內容。但是,將其部署到Mac時,這些行不符合內容。我可以看到裏面有東西,但整個內容不可見,我也可以調整它的大小。這裏是我使用的代碼:Java在Mac上表奇怪
int style = SWT.NONE;
Table table = new Table(composite, style);
table.setHeaderVisible(true);
table.setLinesVisible(true);
TableColumn col = new TableColumn(table, style);
// Is this ok?
col.setWidth(200);
col.setResizable(true);
for (int i = 0; i < contents.size(); i++){
TableItem item = new TableItem(table, style);
item.setText(contents.get(i));
}
我嘗試過不同的風格,但沒有運氣。任何想法出了什麼問題?