Example usage for android.speech.tts TextToSpeech.OnUtteranceCompletedListener interface-usage

List of usage examples for android.speech.tts TextToSpeech.OnUtteranceCompletedListener interface-usage

Introduction

In this page you can find the example usage for android.speech.tts TextToSpeech.OnUtteranceCompletedListener interface-usage.

Usage

From source file com.altcanvas.twitspeak.TwitSpeakActivity.java

public class TwitSpeakActivity extends Activity
        implements TextToSpeech.OnInitListener, TextToSpeech.OnUtteranceCompletedListener {
    private static final String TAG = "TwitSpeakActivity";

    private TextView twitBox = null;
    private ImageView settingsIcon = null;

From source file net.bible.service.device.speak.TextToSpeechController.java

/**
 * <p>text-to-speech (TTS). Please note the following steps:</p>
 *
 * <ol>
 * <li>Construct the TextToSpeech object.</li>
 * <li>Handle initialization callback in the onInit method.

From source file com.bellman.bible.service.device.speak.TextToSpeechController.java

/**
 * <p>text-to-speech (TTS). Please note the following steps:</p>
 * <p>
 * <ol>
 * <li>Construct the TextToSpeech object.</li>
 * <li>Handle initialization callback in the onInit method.

From source file com.bdcorps.videonews.MainActivity.java

public class MainActivity extends AppCompatActivity
        implements TextToSpeech.OnInitListener, TextToSpeech.OnUtteranceCompletedListener {

    public CustomTabsClient mClient;
    private CustomTabsServiceConnection mConnection;
    private CustomTabsSession mCustomTabsSession;

From source file com.gelakinetic.mtgfam.fragments.LifeCounterFragment.java

public class LifeCounterFragment extends FamiliarFragment implements TextToSpeech.OnInitListener,
        AudioManager.OnAudioFocusChangeListener, TextToSpeech.OnUtteranceCompletedListener {

    /* constants for display mode */
    public static final int DISPLAY_NORMAL = 0;
    public static final int DISPLAY_COMPACT = 1;

From source file org.botlibre.sdk.activity.ChatActivity.java

/**
 * Activity for chatting with a bot.
 * To launch this activity from your app you can use the HttpFetchAction passing the bot id or name as a config, and launch=true.
 */
@SuppressWarnings("deprecation")
public class ChatActivity extends LibreActivity