Android SpeechRecognizer should only be used from the application's main thread

邮差的信 提交于 2019-12-04 06:26:56

问题


I am trying to integrate some of Androids Speech APIS in my AndEngine based game.

I placed my code within the BaseGame activity - however this error appears at runtime:

05-06 23:51:28.955: ERROR/AndroidRuntime(553): java.lang.RuntimeException: SpeechRecognizer should be used only from the application's main thread

How do I access the applications main thread? And how can I ensure my Speech code runs in it.

The setup is as follows:

Main Class - BaseGameActivity SpeechClass

Main Class instantiates a new SpeechClass + calls its method - then I get the above error.

Please advise on how I can do this correctly.


回答1:


Call the SpeechClass on the main thread by doing something like this:

final SpeechClass c = getSpeechClass(); // get the speech class

View v = findViewById(R.id.anyview); //fetch a View: any one will do

v.post(new Runnable(){ public void run(){ c.doSomething(); }});

That should run it on the main thread. Might slow your UI down if doSomething takes a while, but you get to work that out.



来源:https://stackoverflow.com/questions/5968646/android-speechrecognizer-should-only-be-used-from-the-applications-main-thread

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!