I'm been successful in using the webview available on glass to display inputs.
The webview allows you to pan and select links. For input fields, my users will be blocked and unable to continue following.
I was interested in using the GDK voice to translate text to speech within webview.
Is there a way to call the speech recognition intent within view or in background?
https://developers.google.com/glass/develop/gdk/input/voice#starting_the_speech_recognition_activity
private void displaySpeechRecognizer() {
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
startActivityForResult(intent, SPEECH_REQUEST);
}