summaryrefslogtreecommitdiffstats
path: root/pico/src
diff options
context:
space:
mode:
authorCharles Chen <clchen@google.com>2010-01-22 11:01:52 -0800
committerCharles Chen <clchen@google.com>2010-01-25 13:13:21 -0800
commitce6b1f9e8ab462adb644dee337199f258619718e (patch)
tree5277e83c23d4f1d076dfdd0c5b4c3ce18308bd16 /pico/src
parentcb1b5f35225a63d1efdd595955e6455e718b1698 (diff)
downloadexternal_svox-ce6b1f9e8ab462adb644dee337199f258619718e.zip
external_svox-ce6b1f9e8ab462adb644dee337199f258619718e.tar.gz
external_svox-ce6b1f9e8ab462adb644dee337199f258619718e.tar.bz2
Adding GetSampleText activity to SVOX Pico so that it can self
report its language strings for each language.
Diffstat (limited to 'pico/src')
-rwxr-xr-xpico/src/com/svox/pico/GetSampleText.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/pico/src/com/svox/pico/GetSampleText.java b/pico/src/com/svox/pico/GetSampleText.java
new file mode 100755
index 0000000..b8d3820
--- /dev/null
+++ b/pico/src/com/svox/pico/GetSampleText.java
@@ -0,0 +1,66 @@
+/*
+ * 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.svox.pico;
+
+import java.io.File;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.speech.tts.TextToSpeech;
+
+import android.util.Log;
+
+/*
+ * Returns the sample text string for the language requested
+ */
+public class GetSampleText extends Activity {
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ int result = TextToSpeech.LANG_AVAILABLE;
+ Intent returnData = new Intent();
+
+ Intent i = getIntent();
+ String language = i.getExtras().getString("language");
+ String country = i.getExtras().getString("country");
+ String variant = i.getExtras().getString("variant");
+
+ if (language.equals("eng")) {
+ if (country.equals("GBR")){
+ returnData.putExtra("sampleText", getString(R.string.eng_gbr_sample));
+ } else {
+ returnData.putExtra("sampleText", getString(R.string.eng_usa_sample));
+ }
+ } else if (language.equals("fra")) {
+ returnData.putExtra("sampleText", getString(R.string.fra_fra_sample));
+ } else if (language.equals("ita")) {
+ returnData.putExtra("sampleText", getString(R.string.ita_ita_sample));
+ } else if (language.equals("deu")) {
+ returnData.putExtra("sampleText", getString(R.string.deu_deu_sample));
+ } else if (language.equals("spa")) {
+ returnData.putExtra("sampleText", getString(R.string.spa_esp_sample));
+ } else {
+ result = TextToSpeech.LANG_NOT_SUPPORTED;
+ returnData.putExtra("sampleText", "");
+ }
+
+ setResult(result, returnData);
+ finish();
+ }
+}