2012-08-06 1 views
1

Мое приложение использует текст в речь после команды распознавания голоса. Раньше я работал с ней без ошибок, но теперь он вызывает у меня сообщение об ошибке соединения и не запускает активность. Я включил свой файл LogCat и Java, где находится ошибка.служебное соединение просочилось на текст-на-речь

08-06 08:54:50.090: E/ActivityThread(2871): android.app.ServiceConnectionLeaked: Activity com.example.com.proto1.menu has leaked ServiceConnection [email protected] that was originally bound here 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:932) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:827) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.ContextImpl.bindService(ContextImpl.java:1109) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.content.ContextWrapper.bindService(ContextWrapper.java:370) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.speech.tts.TextToSpeech.initTts(TextToSpeech.java:517) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.speech.tts.TextToSpeech.<init>(TextToSpeech.java:483) 
08-06 08:54:50.090: E/ActivityThread(2871):  at com.example.com.proto1.menu.onActivityResult(menu.java:250) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.Activity.dispatchActivityResult(Activity.java:4581) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.ActivityThread.deliverResults(ActivityThread.java:2817) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.ActivityThread.handleSendResult(ActivityThread.java:2864) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.ActivityThread.access$1000(ActivityThread.java:122) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1057) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.os.Handler.dispatchMessage(Handler.java:99) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.os.Looper.loop(Looper.java:132) 
08-06 08:54:50.090: E/ActivityThread(2871):  at android.app.ActivityThread.main(ActivityThread.java:4126) 
08-06 08:54:50.090: E/ActivityThread(2871):  at java.lang.reflect.Method.invokeNative(Native Method) 
08-06 08:54:50.090: E/ActivityThread(2871):  at java.lang.reflect.Method.invoke(Method.java:491) 
08-06 08:54:50.090: E/ActivityThread(2871):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:844) 
08-06 08:54:50.090: E/ActivityThread(2871):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602) 
08-06 08:54:50.090: E/ActivityThread(2871):  at dalvik.system.NativeStart.main(Native Method) 



package com.example.com.proto1; 

import android.app.Activity; 
import android.content.Intent; 
import android.media.MediaPlayer; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.Button; 
import android.content.pm.PackageManager; 
import android.content.pm.ResolveInfo; 
import android.speech.RecognizerIntent; 
import android.view.View.OnClickListener; 
import android.widget.ArrayAdapter; 
import android.widget.EditText; 
import android.widget.ListView; 
import android.widget.Toast; 
import android.speech.tts.TextToSpeech; 
import java.util.ArrayList; 
import java.util.List; 
import java.util.Locale; 

@SuppressWarnings("unused") 
public class menu extends Activity implements TextToSpeech.OnInitListener, 
     OnClickListener { 

    // defined 
    TextToSpeech mTts; 
    public static final int VOICE_RECOGNITION_REQUEST_CODE = 1234; 

    // remember to include a listview on the xml or the voice recognition code 
    // will not work 
    public ListView mList; 
    // TTS object 
    Button speakButton, infoButton, voiceButton, talkButton; 

    // TTS object 
    public TextToSpeech myTTS; 
    // status check code 
    public int MY_DATA_CHECK_CODE = 0; 

    @Override 
    protected void onCreate(Bundle aboutmenu) { 
     super.onCreate(aboutmenu); 
     setContentView(R.layout.mainx); 

     SpeakingAndroid speak = new SpeakingAndroid(); 

     VoiceRecognition voiceinput = new VoiceRecognition(); 

     // get a reference to the button element listed in the XML layout 
     speakButton = (Button) findViewById(R.id.btn_speak); 
     infoButton = (Button) findViewById(R.id.aboutbutton); 
     voiceButton = (Button) findViewById(R.id.voicebutton); 
     talkButton = (Button) findViewById(R.id.talk); 

     // listen for clicks 
     infoButton.setOnClickListener(this); 
     speakButton.setOnClickListener(this); 
     talkButton.setOnClickListener(this); 

     // check for TTS data 
     Intent checkTTSIntent = new Intent(); 
     checkTTSIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA); 
     startActivityForResult(checkTTSIntent, MY_DATA_CHECK_CODE); 

     // calling method 
     voiceinputbuttons(); 

     // Check to see if a recognition activity is present 
     // if running on AVD virtual device it will give this message. The mic 
     // required only works on an actual android device// 
     PackageManager pm = getPackageManager(); 
     List<ResolveInfo> activities = pm.queryIntentActivities(new Intent(
       RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0); 
     if (activities.size() != 0) { 
      voiceButton.setOnClickListener(this); 
     } else { 
      voiceButton.setEnabled(false); 
      voiceButton.setText("Recognizer not present"); 
     } 

    } 

    // setup TTS 
    public void onInit(int initStatus) { 

     // check for successful instantiation 

     // returns a fail statement if speech doesn't work 
     if (initStatus == TextToSpeech.SUCCESS) { 
      if (myTTS.isLanguageAvailable(Locale.US) == TextToSpeech.LANG_AVAILABLE) 
       myTTS.setLanguage(Locale.US); 
     } else if (initStatus == TextToSpeech.ERROR) { 
      Toast.makeText(this, "Sorry! Text To Speech failed...", 
        Toast.LENGTH_LONG).show(); 
     } 
    } 

    public void informationmenu() { 
     speakWords("information screen"); 
     startActivity(new Intent("android.intent.action.INFOSCREEN")); 
    } 

    public void voicemenu() { 
     speakWords("voice recognition menu"); 
     startActivity(new Intent("android.intent.action.RECOGNITIONMENU")); 
    } 

    public void mainmenu() { 
     speakWords("main menu"); 
     startActivity(new Intent("android.intent.action.MENU")); 
    } 

    // creating method 
    public void voiceinputbuttons() { 
     speakButton = (Button) findViewById(R.id.btn_speak); 
     mList = (ListView) findViewById(R.id.list); 
    } 

    // respond to button clicks 
    public void onClick(View v) { 
     switch (v.getId()) { 

     // use switch case so each button does a different thing 
     // accurately(similar to an if statement) 
     case R.id.btn_speak: 
      String words1 = speakButton.getText().toString(); 

      // speakwords(xxxx); is the piece of code that actually calls the 
      // text to speech 
      speakWords(words1); 
      Intent voiceIntent = new Intent("ANDROID_NET"); 
      startActivity(voiceIntent); 
      break; 
     case R.id.aboutbutton: 
      String words2 = infoButton.getText().toString(); 
      speakWords(words2); 
      Intent infoIntent = new Intent("android.intent.action.INFOSCREEN"); 
      startActivity(infoIntent); 
      break; 
     case R.id.voicebutton: 
      speakWords("Speak Now"); 
      startVoiceRecognitionActivity(); // call for voice recognition 
               // activity 
      break; 
     case R.id.talk: 
      speakWords("This is the main menu."); 
      break; 
     } 
    } 

    // speak the user text 
    // setting up the speakWords code 
    public void speakWords(String speech) { 

     // speak straight away 
     myTTS.speak(speech, TextToSpeech.QUEUE_FLUSH, null); 
    } 

    /** 
    * Fire an intent to start the speech recognition activity. 
    */ 
    public void startVoiceRecognitionActivity() { 
     Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); 
     intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, 
       RecognizerIntent.LANGUAGE_MODEL_FREE_FORM); 
     intent.putExtra(RecognizerIntent.EXTRA_PROMPT, 
       "Speech recognition demo"); 
     startActivityForResult(intent, VOICE_RECOGNITION_REQUEST_CODE); 
    } 

    /** 
    * Handle the results from the recognition activity. 
    */ 
    @Override 
    public void onActivityResult(int requestCode, int resultCode, Intent data) { 
     if (requestCode == VOICE_RECOGNITION_REQUEST_CODE 
       && resultCode == RESULT_OK) { 
      // Fill the list view with the strings the recognizer thought it 
      // could have heard 
      ArrayList<String> matches = data 
        .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS); 
      mList.setAdapter(new ArrayAdapter<String>(this, 
        android.R.layout.simple_list_item_1, matches)); 
      // matches is the result of voice input. It is a list of what the 
      // user possibly said. 
      // Using an if statement for the keyword you want to use allows the 
      // use of any activity if keywords match 
      // it is possible to set up multiple keywords to use the same 
      // activity so more than one word will allow the user 
      // to use the activity (makes it so the user doesn't have to 
      // memorize words from a list) 
      // to use an activity from the voice input information simply use 
      // the following format; 
      // if (matches.contains("keyword here") { startActivity(new 
      // Intent("name.of.manifest.ACTIVITY") 

      if (matches.contains("information")) { 
       informationmenu(); 
      } 
      if (matches.contains("info screen")) { 
       informationmenu(); 
      } 
      if (matches.contains("info")) { 
       informationmenu(); 
      } 
      if (matches.contains("about")) { 
       informationmenu(); 
      } 

      if (matches.contains("home")) { 
       mainmenu(); 
      } 
      if (matches.contains("menu")) { 
       mainmenu(); 
      } 
      if (matches.contains("home screen")) { 
       mainmenu(); 
      } 
      if (matches.contains("speak")) { 
       startActivity(new Intent("android.intent.action.SPEAK")); 
      } 
      if (matches.contains("close")) { 
       finish(); 
      } 
      if (matches.contains("stop")) { 
       finish(); 
      } 
      if (matches.contains("finish")) { 
       finish(); 
      } 
      if (matches.contains("voice")) { 
       voicemenu(); 
      } 
      if (matches.contains("recognition")) { 
       voicemenu(); 
      } 
      if (matches.contains("voice recognition")) { 
       voicemenu(); 
      } 

     } 

     // still in the onActivityResult: This is for the text to speech part 

     if (requestCode == MY_DATA_CHECK_CODE) { 
      if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) { 
       // the user has the necessary data - create the TTS 
       myTTS = new TextToSpeech(this, this); 
      } else { 
       // no data - install it now 
       Intent installTTSIntent = new Intent(); 
       installTTSIntent 
         .setAction(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA); 
       startActivity(installTTSIntent); 
      } 
     } 

     super.onActivityResult(requestCode, resultCode, data); 

    } 

} 

ответ

3

В onDestroy() метод остановки деятельности Службы TTS с использованием

ttsObj.shutdown(); 
+0

спасибо, это работает –

 Смежные вопросы

  • Нет связанных вопросов^_^