MainActivity has leaked ServiceConnection android.speech.SpeechRecognizer$Connection@414ee400 that was originally bound here

后端 未结 3 1572
南笙
南笙 2021-01-17 22:34

In my app I recognize the user saying \"exit\" or \"close\" and the app should close. With this code

SpeechRecognizer sr;
Map dictiona         


        
3条回答
  •  [愿得一人]
    2021-01-17 23:03

    My solution for Dialog:

    public void dismiss(){
        speech.stopListening();
        try{
            speech.destroy();
        }
        catch (Exception e)
        {
            Log.e(TAG,"Exception:" + e.toString());
        }
        super.dismiss();
    }
    

提交回复
热议问题