我有这一行:
Log.i("----------",Arrays.toString(Locale.getAvailableLocales()));
此行显示我设备上可用语言的列表。 但是这个列表我只能在我运行程序之后才能看到它,而且我在其中一个视窗中看到它就忘记了一个,因为它偶然发现了它,但我看到了它的绿色一秒钟。
有没有办法在我运行程序后立即看到这个日志列表数组,并且在不在设备中的PC上看到它更好,我的意思是像messageBox一样?我的意思是在它自己的Eclipse中看到它更好。
另一个问题是我在Main.xml设计器中添加了一个按钮和一个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);
}
}
感谢。
答案 0 :(得分:1)
在Eclipse中
点击窗口>显示视图>其他> logcat的
答案 1 :(得分:0)
查看日志的另一种方法是从android-sdk / tools运行ddms.bat。有时我遇到Eclipse没有显示日志的问题,而DDMS总是为我工作。