123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- /*
- * Copyright (C) 2012-2013 Reece H. Dunn
- * Copyright (C) 2009 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
- package com.reecedunn.espeak;
-
- import android.app.Activity;
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.content.IntentFilter;
- import android.os.Build;
- import android.os.Bundle;
- import android.os.Handler;
- import android.os.Message;
- import android.preference.PreferenceActivity;
- import android.speech.tts.TextToSpeech;
- import android.util.Log;
- import android.util.Pair;
- import android.view.Menu;
- import android.view.MenuInflater;
- import android.view.MenuItem;
- import android.view.View;
- import android.widget.ListView;
- import android.widget.EditText;
-
- import java.lang.ref.WeakReference;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.Locale;
-
- public class eSpeakActivity extends Activity {
- private static final String ACTION_TTS_SETTINGS = "com.android.settings.TTS_SETTINGS";
-
- /** Handler code for TTS initialization hand-off. */
- private static final int TTS_INITIALIZED = 1;
-
- private static final int REQUEST_CHECK = 1;
- private static final int REQUEST_DEFAULT = 3;
-
- private static final String TAG = "eSpeakActivity";
-
- private enum State {
- LOADING,
- DOWNLOAD_FAILED,
- ERROR,
- SUCCESS
- }
-
- private State mState;
- private TextToSpeech mTts;
- private List<Pair<String,String>> mInformation;
- private InformationListAdapter mInformationView;
- private EditText mText;
-
- private final BroadcastReceiver mOnEspeakInitialized = new BroadcastReceiver() {
- @Override
- public void onReceive(Context context, Intent intent) {
- populateInformationView();
- }
- };
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
-
- setContentView(R.layout.main);
-
- mInformation = new ArrayList<Pair<String,String>>();
- mInformationView = new InformationListAdapter(this, mInformation);
- ((ListView)findViewById(R.id.properties)).setAdapter(mInformationView);
- mText = (EditText)findViewById(R.id.editText1);
-
- setState(State.LOADING);
- checkVoiceData();
-
- findViewById(R.id.speak).setOnClickListener(new View.OnClickListener() {
- @Override
- @SuppressWarnings("deprecation")
- public void onClick(View v) {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
- mTts.speak(mText.getText().toString(), TextToSpeech.QUEUE_ADD, null, null);
- } else {
- mTts.speak(mText.getText().toString(), TextToSpeech.QUEUE_ADD, null);
- }
- }
- });
-
- findViewById(R.id.ssml).setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- String ssml =
- "<?xml version=\"1.0\"?>\n" +
- "<speak xmlns=\"http://www.w3.org/2001/10/synthesis\" version=\"1.0\">\n" +
- "\n" +
- "</speak>";
- mText.setText(ssml);
- }
- });
- }
-
- @Override
- public void onStart() {
- super.onStart();
-
- final IntentFilter filter = new IntentFilter(TtsService.ESPEAK_INITIALIZED);
- registerReceiver(mOnEspeakInitialized, filter);
- }
-
- @Override
- public void onStop() {
- super.onStop();
-
- unregisterReceiver(mOnEspeakInitialized);
-
- if (mTts != null) {
- mTts.shutdown();
- }
- }
-
- @Override
- public boolean onCreateOptionsMenu(Menu menu)
- {
- MenuInflater inflater = getMenuInflater();
- inflater.inflate(R.menu.options, menu);
- if (Build.VERSION.SDK_INT < 14) {
- // Hide the eSpeak setting menu item on pre-ICS.
- menu.findItem(R.id.espeakSettings).setVisible(false);
- }
- return true;
- }
-
- @Override
- public boolean onOptionsItemSelected(MenuItem item)
- {
- switch (item.getItemId())
- {
- case R.id.espeakSettings:
- startActivityForResult(new Intent(eSpeakActivity.this, TtsSettingsActivity.class), REQUEST_DEFAULT);
- return true;
- case R.id.ttsSettings:
- launchGeneralTtsSettings();
- return true;
- }
- return super.onOptionsItemSelected(item);
- }
-
- /**
- * Sets the UI state.
- *
- * @param state The current state.
- */
- private void setState(State state) {
- mState = state;
- switch (mState)
- {
- case LOADING:
- findViewById(R.id.loading).setVisibility(View.VISIBLE);
- findViewById(R.id.success).setVisibility(View.GONE);
- break;
- default:
- findViewById(R.id.loading).setVisibility(View.GONE);
- findViewById(R.id.success).setVisibility(View.VISIBLE);
- break;
- }
- }
-
- /**
- * Launcher the voice data verifier.
- */
- private void checkVoiceData() {
- final Intent checkIntent = new Intent(this, CheckVoiceData.class);
-
- startActivityForResult(checkIntent, REQUEST_CHECK);
- }
-
- /**
- * Initializes the TTS engine.
- */
- private void initializeEngine() {
- mTts = new TextToSpeech(this, mInitListener);
- }
-
- @SuppressWarnings("deprecation")
- private Locale getTtsLanguage() {
- if (mTts != null) {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
- android.speech.tts.Voice voice = mTts.getVoice();
- if (voice != null) {
- return voice.getLocale();
- }
- } else {
- return mTts.getLanguage();
- }
- }
- return null;
- }
-
- private void populateInformationView() {
- mInformation.clear();
-
- Locale language = getTtsLanguage();
- if (language != null) {
- final String currentLocale = getString(R.string.current_tts_locale);
- mInformation.add(new Pair<String, String>(currentLocale, language.getDisplayName()));
- }
-
- final String availableVoices = getString(R.string.available_voices);
- mInformation.add(new Pair<String,String>(availableVoices, Integer.toString(SpeechSynthesis.getVoiceCount())));
-
- final String version = getString(R.string.tts_version);
- mInformation.add(new Pair<String,String>(version, SpeechSynthesis.getVersion()));
-
- final String statusText;
- switch (mState) {
- case ERROR:
- statusText = getString(R.string.error_message);
- break;
- case DOWNLOAD_FAILED:
- statusText = getString(R.string.voice_data_failed_message);
- break;
- default:
- if (!getPackageName().equals(mTts.getDefaultEngine())) {
- statusText = getString(R.string.set_default_message);
- } else {
- statusText = null;
- }
- break;
- }
- if (statusText != null) {
- final String statusLabel = getString(R.string.status);
- mInformation.add(new Pair<String,String>(statusLabel, statusText));
- }
-
- mInformationView.notifyDataSetChanged();
- }
-
- /**
- * Handles the result of voice data verification. If verification fails
- * following a successful installation, displays an error dialog. Otherwise,
- * either launches the installer or attempts to initialize the TTS engine.
- *
- * @param resultCode The result of voice data verification.
- * @param data The intent containing available voices.
- */
- private void onDataChecked(int resultCode, Intent data) {
- if (resultCode != TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) {
- Log.e(TAG, "Voice data check failed (error code: " + resultCode + ").");
- setState(State.ERROR);
- }
-
- initializeEngine();
- }
-
- /**
- * Handles the result of TTS engine initialization. Either displays an error
- * dialog or populates the activity's UI.
- *
- * @param status The TTS engine initialization status.
- */
- private void onInitialized(int status) {
- if (status != TextToSpeech.SUCCESS) {
- Log.e(TAG, "Initialization failed (status: " + status + ").");
- setState(State.ERROR);
- } else {
- setState(State.SUCCESS);
- }
-
- populateInformationView();
- }
-
- @Override
- protected void onActivityResult(int requestCode, int resultCode, Intent data) {
- switch (requestCode) {
- case REQUEST_CHECK:
- onDataChecked(resultCode, data);
- break;
- case REQUEST_DEFAULT:
- initializeEngine();
- break;
- }
- super.onActivityResult(requestCode, resultCode, data);
- }
-
- private final TextToSpeech.OnInitListener mInitListener = new TextToSpeech.OnInitListener() {
- @Override
- public void onInit(int status) {
- mHandler.obtainMessage(TTS_INITIALIZED, status, 0).sendToTarget();
- }
- };
-
- private static class EspeakHandler extends Handler {
- private WeakReference<eSpeakActivity> mActivity;
-
- public EspeakHandler(eSpeakActivity activity)
- {
- mActivity = new WeakReference<eSpeakActivity>(activity);
- }
-
- @Override
- public void handleMessage(Message msg) {
- switch (msg.what) {
- case TTS_INITIALIZED:
- mActivity.get().onInitialized(msg.arg1);
- break;
- }
- }
- }
- private final Handler mHandler = new EspeakHandler(this);
-
- private void launchGeneralTtsSettings()
- {
- Intent intent;
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB && Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH)
- {
- // The Text-to-Speech settings is a Fragment on 3.x:
- intent = new Intent(android.provider.Settings.ACTION_SETTINGS);
- intent.putExtra(PreferenceActivity.EXTRA_SHOW_FRAGMENT, "com.android.settings.TextToSpeechSettings");
- intent.putExtra(PreferenceActivity.EXTRA_SHOW_FRAGMENT_ARGUMENTS, intent.getExtras());
- }
- else
- {
- // The Text-to-Speech settings is an Activity on 2.x and 4.x:
- intent = new Intent(ACTION_TTS_SETTINGS);
- }
- startActivityForResult(intent, REQUEST_DEFAULT);
- }
- }
|