Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Voice Recognition API 在听完声音后会生成一个建议列表。我想知道,最可能的建议总是排在最前面吗?还是只是随机的。我需要这个来进行计算以确定准确性。
如果你使用
new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
和
data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
将始终首先对最佳匹配进行排序
是的