我有一个文字转语音应用程序,它运行良好。事情是我必须把它放在一个标签中,标签工作正常。但是当我将 tts 放在选项卡中时,它不再起作用了。我已经更改了类名、布局以查看和打包,当然除了变量之外,其他所有内容都不可更改。布局还行。不幸的是,我真的必须把它放在一个标签里。但最糟糕的是它没有显示任何错误。即使尝试捕捉也无法捕捉到任何东西。所以我认为这是一种逻辑错误,它吸收了我脑海中的所有逻辑。哈哈。我检查了调用此活动的主要活动,并显示它们是干净的。所以,这里是代码:
package leytocz.add.andriod;
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 nptab extends Activity implements TextToSpeech.OnInitListener{
private TextToSpeech tts;
private Button btnSpeak;
private EditText txtText;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.nptab);
tts=new TextToSpeech(this,this);
btnSpeak=(Button) findViewById(R.id.btnSpeak);
txtText=(EditText) findViewById(R.id.txtText);
btnSpeak.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
speakOut();
}
});
}
@Override
public void onInit(int status) {
if (status==TextToSpeech.SUCCESS) {
int result=tts.setLanguage(Locale.US);
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", "Initialization Failed!");
}
}
private void speakOut() {
String text=txtText.getText().toString();
tts.speak(text,TextToSpeech.QUEUE_FLUSH, null);
}
}