textView で一度に 1 つの単語を印刷してから、sleep を使用してから次の単語を印刷したいと考えています。しかし、それは機能していません..助けが必要です。
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 の最後の単語のみです