下面是eclipse站点的一个经过修改的片段,展示了我所说的内容。存在2个性能问题。
1) 最初,它需要几秒钟才能显示。如果我将循环增加到10000,则需要很长时间(可能是线性的)。
2) 当你点击一个按钮时,它会将一个小部件添加到面板中,然后必须再次在滚动器中布局所有小部件。这需要几秒钟(太长)。
有没有办法更快地完成我想做的这些事情?
我正在想办法在"列表"类型的视图中显示任意项目。我的理解是,标准列表小部件只显示字符串,所以我认为我必须像这样设置自己的列表。还有别的办法吗?
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.ScrolledComposite;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.RowLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
public class Snippet188 {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
final ScrolledComposite sc = new ScrolledComposite(shell, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
sc.setLayout(new FillLayout());
final Composite c = new Composite(sc, SWT.NONE);
RowLayout rl = new RowLayout(SWT.VERTICAL);
rl.wrap = false;
c.setLayout(rl);
System.out.println(System.currentTimeMillis());
for (int i = 0; i < 1000; i++) {
final Composite item = new Composite(c, SWT.NONE);
item.setLayout(new RowLayout(SWT.VERTICAL));
Label l = new Label(item, SWT.NONE);
l.setText("Label " + i);
Button b = new Button(item, SWT.PUSH);
b.setText("Button " + i);
final int value = i;
b.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
System.out.println("clicked: " + value);
Label newL = new Label(item, SWT.NONE);
newL.setText("new Label " + value);
item.pack();
c.pack();
}
});
}
System.out.println(System.currentTimeMillis());
sc.setContent(c);
sc.setExpandHorizontal(true);
sc.setExpandVertical(true);
sc.setMinSize(c.computeSize(SWT.DEFAULT, SWT.DEFAULT));
sc.setShowFocusedControl(true);
shell.setSize(300, 500);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) display.sleep();
}
display.dispose();
}
}
您可以尝试使用单列表和TableEditor来实现相同的功能。看看这个片段,它展示了如何将另一个小部件添加到表单元格中。
这样可以避免创建尽可能多的复合材料和布局开销。此外,您还可以使用虚拟表仅在需要时创建资源。