Back to project page android-unispeech.
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.
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); } }