Android Open Source - android-unispeech Your Language Select Activity






From Project

Back to project page android-unispeech.

License

The source code is released under:

Apache License

If you think the Android project android-unispeech listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.github.unispeech.languageselect;
// www  . j  a  v a 2  s.co  m
import android.content.Intent;

/**
 * Created by javier.romero on 2/6/14.
 */
public class YourLanguageSelectActivity extends BaseLanguageSelectActivity {

    @Override
    protected String getPrompt() {
        return "You speak...";
    }

    @Override
    protected void onLanguageClicked(SupportedSttLanguage language) {
        Intent intent = TheirLanguageSelectActivity.newIntent(this, language);
        startActivity(intent);
    }
}




Java Source Code List

com.github.unispeech.App.java
com.github.unispeech.languageselect.BaseLanguageSelectActivity.java
com.github.unispeech.languageselect.SupportedSttLanguage.java
com.github.unispeech.languageselect.TheirLanguageSelectActivity.java
com.github.unispeech.languageselect.YourLanguageSelectActivity.java
com.github.unispeech.recognition.RecognitionActivity.java
com.github.unispeech.recognition.SpeechAdapter.java
com.github.unispeech.recognition.SpeechData.java
com.github.unispeech.recognition.TranslatorCallback.java