我有这条线:
Log.i("----------",Arrays.toString(Locale.getAvailableLocales()));
这一行显示了我设备上可用语言的列表。但是列表我只能在我运行程序后才能看到它,而且我在一个视图窗口的底部看到它忘记了一个,因为我不小心关闭了它,但我看到它是绿色的一秒钟。
有什么方法可以在我运行程序后立即查看此日志列表数组,并且还可以在 pc 上而不是在设备上更好地查看它,我的意思是像 messageBox 或其他东西?我的意思是在 Eclipse 中更好地看到它本身。
另一个问题是我在 Main.xml 设计器中添加了一个按钮和一个文本框,但我无法拖动它们。我将它们拖到正确的区域一次,但我无法移动它们,它们被锁定在现在的位置。有什么办法可以移动它们来改变设计器中的位置吗?
这是我的代码:
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);
}
}
谢谢。