My app is using voice recognition setting the language using vr.language will not help me much because I have added international support meaning that a user can use app menu in a more familiar language and use his native voice imput setting.
For example if I set the language from app to spanish and the user needs to use voice recognition in portuguese it is not possible unless I give him options to do it ... this might create a confusion between the menu language and voice recognition language ..
I do prefer letting the user set his device voice input ...
For this particular issue I need to redirect him exactly on the page with voice input settings
Q: is there a defined intent for this voice input settings ?
I did try the bellow code but yet none is going right to that input page where the user will set the voice imput language
Thank you
For example if I set the language from app to spanish and the user needs to use voice recognition in portuguese it is not possible unless I give him options to do it ... this might create a confusion between the menu language and voice recognition language ..
I do prefer letting the user set his device voice input ...
For this particular issue I need to redirect him exactly on the page with voice input settings
Q: is there a defined intent for this voice input settings ?
I did try the bellow code but yet none is going right to that input page where the user will set the voice imput language
B4X:
Dim DoAction As Intent
'DoAction.Initialize("com.android.settings.TTS_SETTINGS", "")
DoAction.Initialize("com.android.settings.VOICE_INPUT_OUTPUT_SETTINGS", "")
StartActivity(DoAction)
Thank you