我对StyledText
. 当我使用setText()
Method 并且文本很长时,我必须等待几秒钟才能呈现该文本。有什么方法可以加快显示此文本的速度吗?
问问题
262 次
1 回答
0
您可以实现的唯一优化是将您setText()
的 aa放入Job
或Runnable
不阻塞 UI。
除此之外,这是 SWT 的 API 限制。
其他建议:
StyledText
,虽然显然不存在
编辑:
/**
*
* @author ggrec
*
*/
public class Test
{
public static void main(final String[] args)
{
new Test();
}
private Test()
{
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new GridLayout(1, false));
final Button button = new Button(shell, SWT.PUSH);
button.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, false));
button.setText("Press me");
final StyledText text = new StyledText(shell, SWT.NONE);
text.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
button.addSelectionListener(new SelectionAdapter()
{
@Override public void widgetSelected(final SelectionEvent e)
{
Display.getDefault().asyncExec(new Runnable()
{
@Override public void run()
{
text.setText("*put very long text here*");
}
});
}
});
shell.setSize(1000, 1000);
shell.open();
while (!shell.isDisposed())
{
if ( !display.readAndDispatch() )
display.sleep();
}
display.dispose();
}
}
于 2013-09-12T19:51:04.923 回答