文本到语音的android查询

时间:2014-11-24 12:44:53

标签: android eclipse speech-recognition text-to-speech android-alertdialog

我正在尝试为我的应用实现文字转语音。当我的应用程序启动时,会显示一个警告框,其中显示"欢迎使用我的应用程序"。

是否可以在警告框中说出文字?

我已经研究过Text to speech,他们都在说String,我不想这样做。

这是我的提示框。该文本位于另一个名为AppResources

的类中
  // Alertbox before start
    AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this);

    dlgAlert.setMessage(AppResources.ALERT_MSG);
    dlgAlert.setTitle(getResources().getString(R.string.app_name));
    dlgAlert.setPositiveButton("OK", null);
    dlgAlert.setCancelable(true);
    dlgAlert.create().show();

谢谢

0 个答案:

没有答案