Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 592740d4 authored by Robert Ly's avatar Robert Ly Committed by Android Git Automerger
Browse files

am c8551e67: am 4f67e66e: am f3be7864: Merge "docs: fix speech code for bug...

am c8551e67: am 4f67e66e: am f3be7864: Merge "docs: fix speech code for bug 16461337" into klp-modular-docs

* commit 'c8551e67':
  docs: fix speech code for bug 16461337
parents bfd2929d c8551e67
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -263,7 +263,7 @@ private void displaySpeechRecognizer() {
@Override
protected void onActivityResult(int requestCode, int resultCode,
        Intent data) {
    if (requestCode == SPEECH_REQUEST && resultCode == RESULT_OK) {
    if (requestCode == SPEECH_REQUEST_CODE && resultCode == RESULT_OK) {
        List<String> results = data.getStringArrayListExtra(
                RecognizerIntent.EXTRA_RESULTS);
        String spokenText = results.get(0);