Kaljurand / K6nele

An Android app that offers speech-to-text user interfaces to other apps
http://kaljurand.github.io/K6nele/
Apache License 2.0
267 stars 83 forks source link

Doesn't work with SwiftkeyX #5

Closed Kaljurand closed 9 years ago

Kaljurand commented 9 years ago

Original issue 1 created by Kaljurand on 2011-09-30T12:57:35.000Z:

SwiftkeyX Android keyboard has a little microphone button for entering text via speech recognition. I can successfully open recognizer-intent with it, and it recognizes my speech, but the resulting text is not written to the current text field.

Works with Google Voice Search: Voice Search gives a list of recognition hypotheses to select from, and the selected text is written to the text field.

Kaljurand commented 9 years ago

Comment #1 originally posted by Kaljurand on 2011-10-05T19:21:42.000Z:

<empty>

Kaljurand commented 9 years ago

Comment #2 originally posted by Kaljurand on 2011-10-05T19:48:38.000Z:

SwiftKey X Keyboard Free

https://market.android.com/details?id=com.touchtype.swiftkey.phone.trial

Kaljurand commented 9 years ago

Comment #3 originally posted by Kaljurand on 2011-10-07T22:09:53.000Z:

The pending intent is now populated like this:

Intent intent = new Intent();
intent.putExtras(mExtraResultsPendingIntentBundle);
// This is for Google Maps, YouTube, ...
intent.putExtra(SearchManager.QUERY, match);
// This is for SwiftKey X, ...
intent.putStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS, matches);

This seems to fix the issue. Kudos to the very responsive TouchType Dev Team!

Kaljurand commented 9 years ago

Comment #4 originally posted by Kaljurand on 2011-11-04T09:30:50.000Z:

<empty>