私はこの行を持っています:
Log.i("----------",Arrays.toString(Locale.getAvailableLocales()));
この行は、デバイスで利用可能な言語のリストを表示します。しかし、リストはプログラムを実行した後にのみ表示され、ビューウィンドウの1つの下部に表示されますが、誤って閉じてしまったので忘れてしまいましたが、一瞬緑色で表示されました。
プログラムを実行した直後にこのログ リスト配列を表示する方法はありますか? Eclipse自体でそれをよりよく見ることを意味します。
別の問題は、Main.xml デザイナーに 1 つのボタンと 1 つの textBox を追加したことですが、それらをドラッグすることはできません。それらを正しい領域に一度ドラッグしますが、移動できず、現在の場所にロックされています。それらを移動してデザイナーの場所を変更する方法はありますか?
これは私のコードです:
package com.testotspeech;
import java.util.Arrays;
import java.util.Locale;
import android.app.Activity;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class AndroidTestToSpeechActivity extends Activity implements
TextToSpeech.OnInitListener {
/** Called when the activity is first created. */
private TextToSpeech tts;
private Button btnSpeak;
private EditText txtText;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Log.i("----------",Arrays.toString(Locale.getAvailableLocales()));
tts = new TextToSpeech(this, this);
btnSpeak = (Button) findViewById(R.id.btnSpeak);
txtText = (EditText) findViewById(R.id.txtText);
// button on click event
btnSpeak.setOnClickListener(new View.OnClickListener() {
public void onClick(View arg0) {
speakOut();
}
});
}
@Override
public void onDestroy() {
// Don't forget to shutdown tts!
if (tts != null) {
tts.stop();
tts.shutdown();
}
super.onDestroy();
}
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
int result = tts.setLanguage(Locale.CHINESE);
if (result == TextToSpeech.LANG_MISSING_DATA
|| result == TextToSpeech.LANG_NOT_SUPPORTED) {
Log.e("TTS", "This Language is not supported");
} else {
btnSpeak.setEnabled(true);
speakOut();
}
} else {
Log.e("TTS", "Initilization Failed!");
}
}
private void speakOut() {
String text = txtText.getText().toString();
tts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
}
}
ありがとう。