Hello,
I tried to use Voice Recognition offline with intent. https://developer.android.com/reference/android/speech/RecognizerIntent#EXTRA_PREFER_OFFLINE
but the voice recognition is not working offline.
Does anybody know why its happening and if there is a way to fix it? (and how?)
Thanks in advance.
I tried to use Voice Recognition offline with intent. https://developer.android.com/reference/android/speech/RecognizerIntent#EXTRA_PREFER_OFFLINE
B4X:
Dim VR As VoiceRecognition
Dim i As Intent
VR.Initialize("vr")
i.Initialize("android.speech.action.RECOGNIZE_SPEECH", "")
i.PutExtra("android.speech.extra.PREFER_OFFLINE", 1000)
VR.Listen2(i)
but the voice recognition is not working offline.
Does anybody know why its happening and if there is a way to fix it? (and how?)
Thanks in advance.