我想在textView中一次打印一個單詞,然後使用睡眠,然後使用下一個單詞。 但它int'n工作..需要幫助。Android線程和getText()裏面for循環不工作?
String s = MainActivity.check;// String check defined in mainactivity this is second
String[] words = s.split(" ");
EditText et = (EditText) findViewById(R.id.editText2);
for(int i=0;i<words.length; i++){
et.setText(words[i]);
Thread.sleep(1000);
}
上面的輸出只硬道理中的TextView
你有什麼錯誤? – 2013-02-25 08:20:44