我想使用Android开发针对Text应用的演讲。我发表了演讲,然后将其转换为文本,但是当我再次演讲时,则前一行会被破坏,并且可以设置新行。但是我不要 我要设置所有行。...
这是我的代码...
ArrayList<String> matches = bundle.getStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION);
if (matches != null)
{
editText.setText(matches.get(0)+". ");
}