我有:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView debugView = (TextView)findViewById(R.id.debugView);
for(int i=0;i<100;i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
debugView.setText(Integer.toString(i));
}
}
I would expect it to update the text view each time through the loop so I would get: 1, 2, 3, ... 99
相反,这只是10秒钟,然后是产出: 99
我猜测,我需要书面意见在座席上复读。 我是新事物。 有些人能否告诉我,这是实现这一目标的最佳途径?
我最终的目标是能够处理音频样本,以建立一个gui子辅导员。 我试图直截了当地核实,看上看看看看看看看镜是回应外部声音的,我希望更新文字,以证明这一点。 请建议有更好的办法这样做。