我想在 textView 中一次打印一个单词,然后使用 sleep 和下一个单词。但它 int'n 工作.. 需要帮助。
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 中的最后一个单词