Skip to content
This repository has been archived by the owner on Nov 19, 2018. It is now read-only.

Latest commit

 

History

History
26 lines (13 loc) · 612 Bytes

speech-recognizer.md

File metadata and controls

26 lines (13 loc) · 612 Bytes

Speech Recognizer

Use a speech recognizer component to listen to the user speaking and convert the spoken sound into text using Android's speech recognition feature.

Properties

Result

The last text produced by the recognizer.

Methods

GetText()

Asks the user to speak, and converts the speech to text. Signals the AfterGettingText event when the result is available.

Events

AfterGetting(Text result)

Signaled after the recognizer has produced text. The argument is the text result that was produced.

BeforeGettingText()

Signaled just before the recognizer is called.