我完全不知道为什么应用程序在下面的代码中遇到注释行时会意外停止。
public class Foo {
private ExitText input;
public FooExitText input) {
this.input = input;
}
public void start() {
// everything is okay:
input.requestFocus();
input.setOnKeyListener(new EntryCheckListener());
input.setEnabled(false);
// PROBLEMS!:
ExecutorService exec = Executors.newSingleThreadExecutor();
exec.execute(new Runnable() {
public void run() {
synchronized (Foo.this) {
// input.setEnabled(false);
for(int i=0; i<5; ++i) {
//input.setText("test" + i);
}
// input.setEnabled(false);
}
}
});
}
}
P.S。 这是什么意思? :/
“哎呀!无法提交你的编辑,因为:
您的帖子没有太多上下文来解释代码部分;请更清楚地解释你的情景。“