我想获得服务语音识别的结果。我的意思是我想获得用户说的内容。我尝试了一个代码
ArrayList<String> matches = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
if(matches.get(i).equals("funky monkey")){
Toast.makeText(this,"Excelent !",2000).show();
但我不理解这一行if(matches.get(i).equals(“funky monkey”)) 你能帮助我理解这一行吗或通过其他解决方案帮助我 thx
答案 0 :(得分:0)
此行检查位于matches
(matches.get(i)
)中第i个位置的字符串是否与字符串“funky monky”(equals("funky monky")
)