Why does the list of unavailable voices is always empty?
问题 Android enables an application to query the platform for the availability of language files: simply instantiate the intent below and send it in an asynchronous request by using startActivityForResult method. Intent checkIntent = new Intent(); checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA); startActivityForResult(checkIntent, TTS_CHECK_DATA_REQUEST_CODE); The result of the above request is returned by calling the onActivityResult method: the second argument is a value which