- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在编写一个 Android
应用程序来从文件夹中获取最新的电子邮件并使用 TTS 播放。我希望能够在开车时使用它,所以它必须大部分是自动的。到目前为止一切正常,直到我 try catch TextToSpeech
结束讲话的时间,以便我们可以继续处理下一封电子邮件。
这是完整的 MainActivity.java
文件:
package uk.co.letsdelight.emailreader;
import android.os.AsyncTask;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.speech.tts.UtteranceProgressListener;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.ImageButton;
import android.widget.TextView;
import android.widget.Toast;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import java.util.Properties;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.Multipart;
import javax.mail.Session;
import javax.mail.Store;
import javax.mail.internet.MimeBodyPart;
public class MainActivity extends AppCompatActivity implements TextToSpeech.OnInitListener {
public TextToSpeech tts;
private Bundle ttsParam = new Bundle();
public UtteranceProgressListener utListener;
private boolean isPlaying = false;
private Properties imap = new Properties();
private String textToSpeak = "";
@Override
public void onInit(int ttsStatus) {
if (ttsStatus == TextToSpeech.SUCCESS) {
utListener = new UtteranceProgressListener() {
@Override
public void onStart(String s) {
TextView status = findViewById(R.id.status);
status.setText("started reading (Listener)");
}
@Override
public void onDone(String s) {
Toast.makeText(getApplicationContext(), "Done Event Listener", Toast.LENGTH_LONG).show();
TextView status = findViewById(R.id.status);
status.setText("finished reading (Listener)");
/*ImageButton i = findViewById(R.id.playButton);
i.setImageResource(R.drawable.button_play);*/
isPlaying = false;
}
@Override
public void onStop(String s, boolean b) {
Toast.makeText(getApplicationContext(), "Stop Event Listener", Toast.LENGTH_LONG).show();
TextView status = findViewById(R.id.status);
status.setText("stopped reading (Listener)");
/*ImageButton i = findViewById(R.id.playButton);
i.setImageResource(R.drawable.button_play);*/
isPlaying = false;
}
@Override
public void onError(String s) {
Toast.makeText(getApplicationContext(), "Error Event Listener", Toast.LENGTH_LONG).show();
TextView status = findViewById(R.id.status);
status.setText("Error reading email");
ImageButton i = findViewById(R.id.playButton);
i.setImageResource(R.drawable.button_play);
isPlaying = false;
}
};
tts.setOnUtteranceProgressListener(utListener);
TextView status = findViewById(R.id.status);
status.setText("initialised");
} else {
TextView status = findViewById(R.id.status);
status.setText("failed to initialise");
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
imap.setProperty("mail.store.protocol", "imap");
imap.setProperty("mail.imaps.port", "143");
tts = new TextToSpeech(this,this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public void restartPressed(View v) {
if (isPlaying) {
tts.stop();
speak();
}
}
public void playPressed(View v) {
ImageButton i = (ImageButton) v;
if (isPlaying) {
isPlaying = false;
i.setImageResource(R.drawable.button_play);
TextView status = findViewById(R.id.status);
status.setText("");
if (tts != null) {
tts.stop();
}
} else {
isPlaying = true;
i.setImageResource(R.drawable.button_stop);
new Reader().execute();
}
}
class Reader extends AsyncTask<String, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
TextView status = findViewById(R.id.status);
status.setText("fetching email");
}
@Override
protected String doInBackground(String... params) {
String toRead = "nothing to fetch";
try {
Session session = Session.getDefaultInstance(imap, null);
Store store = session.getStore();
store.connect(getText(R.string.hostname).toString(), getText(R.string.username).toString(), getText(R.string.password).toString());
Folder inbox = store.getFolder("INBOX.Articles.listen");
if (inbox.exists() && inbox.getMessageCount() > 0) {
inbox.open(Folder.READ_ONLY);
Message msg = inbox.getMessage(inbox.getMessageCount() - 6);
if (msg.getContentType().contains("multipart")) {
Multipart multiPart = (Multipart) msg.getContent();
MimeBodyPart part = (MimeBodyPart) multiPart.getBodyPart(multiPart.getCount() - 1);
toRead = part.getContent().toString();
} else {
toRead = msg.getContent().toString();
}
} else {
toRead = "The folder is empty or doesn't exist";
}
} catch (Throwable ex) {
toRead = "Error fetching email - " + ex.toString();
}
return toRead;
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
String body;
TextView status = findViewById(R.id.status);
status.setText("");
try {
Document doc = Jsoup.parse(s);
body = doc.body().text();
} catch (Throwable ex) {
body = "Error parsing email - " + ex.toString();
}
status.setText("email successfully fetched");
textToSpeak = body;
if (isPlaying) {
speak();
}
}
}
private void speak() {
int maxLength = TextToSpeech.getMaxSpeechInputLength();
if (textToSpeak.length() > maxLength) {
textToSpeak = "The email text is too long! The maximum length is " + maxLength + " characters";
}
ttsParam.putString(TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID, "EmailReader");
tts.speak(textToSpeak, TextToSpeech.QUEUE_FLUSH, ttsParam, "EmailReader");
}
@Override
protected void onDestroy() {
if (tts != null) {
tts.stop();
tts.shutdown();
}
super.onDestroy();
}
}
内部类 Reader
工作正常。 doInBackground
获取电子邮件,onPostExec
去除任何 HTML 以保留电子邮件的实际文本内容。这被传递给 speak()
方法,该方法进行实际的说话和工作。
问题出在 onUtteranceProgressListener
上。
有时会调用 onStart(String s)
方法,有时不会!它似乎永远不会在第一次读出电子邮件时被调用。大多数情况下,它会在后续调用 speak()
时被调用,但并非总是如此。大约五分之一的时间它没有被调用。如果调用监听器,状态显示“开始阅读(监听器)”,否则显示“成功获取电子邮件”。
onDone
、onError
和 onStop
永远不会被调用。
我曾尝试在 tts.speak()
调用中使用不同的 utteranceID
和 Bundle
值,但这会有所不同。
应用程序启动时,第一个状态显示为“已初始化”,这意味着 onUtteranceListener
必须已在 onInit
方法中设置。 TextToSpeech
对象在 Activity 的 onCreate
方法中实例化。
我查看了所有我能找到的信息,其中大部分建议正确设置 utteranceID
。为了更好地理解这个问题,我还能尝试什么?
最佳答案
问题是 onDone() 方法(实际上是任何进度回调)是在后台线程上运行的,因此 Toast 将无法工作,任何访问您的 UI 的代码,如 setText( ...) 可能有效也可能无效。
所以...这些方法可能正在被调用,但您只是看不到。
解决方案是用 runOnUiThread() 包围回调中的代码,如下所示:
@Override
public void onDone(String s) {
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(getApplicationContext(), "Done Event Listener", Toast.LENGTH_LONG).show();
TextView status = findViewById(R.id.status);
status.setText("finished reading (Listener)");
/*ImageButton i = findViewById(R.id.playButton);
i.setImageResource(R.drawable.button_play);*/
isPlaying = false;
}
});
}
注意:最好在 onCreate() 中初始化您的 TextView 以及其他所有内容,而不是在进度回调中。
此外,utteranceID 的目的是为每次调用 speak() 提供一个唯一标识符,然后作为进度回调中的“String s”参数传回给您。
最好使用某种随机数生成器为每次通话提供一个新的(“最近的”)ID,然后在进度回调中检查它。
您可以看到关于此 here 的类似问答。 .
边注:
由于您有一个“重新启动”按钮,您应该知道在 <23 的 API 上,调用 TextToSpeech.stop() 将导致调用进度监听器中的 onDone()。在 API 23+ 上,它改为调用 onStop()。
关于android - 未可靠地调用 UtteranceProgressListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52465605/
我正在尝试制作一个语音驱动的应用程序,但是我遇到了一个主要问题。 无论我将 Speak 方法放在哪里,我的 UtteranceProgressListener 类都不会调用任何给定的方法。 这是我的代
我有一个带有两个 ImageButton(播放、停止)的 FrameLayout。默认情况下 播放 按钮是VISIBLE,停止 按钮是GONE 单击播放 会启动读取文本的 TTS 引擎。阅读完文本后,
我正在编写一个 Android 应用程序来从文件夹中获取最新的电子邮件并使用 TTS 播放。我希望能够在开车时使用它,所以它必须大部分是自动的。到目前为止一切正常,直到我 try catch Text
当我调用其类的 speak 函数时,调用了 UtteranceProgressListener 但未调用监听器的方法,即 onStart()、onDone() 和 onError()。 最终,我们想要
我不想把我所有的代码都放在这里,所以我只是放了相关的部分。如果您需要更多,请随时询问。 我正在使用文本转语音 (TTS),它在提出问题后会导致语音监听器...我通过日志输出发现 TTS 的 onIni
我正在使用 Android 的 TTS 功能,TextToSpeech 类有这个方法来设置一个监听器,一旦 TextToSpeech 完成播放就会得到通知: public int setOnUtter
我在 TextToSpeech 实例上设置了一个 UtteranceProgressListener。它被调用并且运行良好,但是当用户使用 Talkback 时,它可能会中断我的语音请求并且我的 Ut
我正在尝试使用 Android 的 TTS 功能,TextToSpeech 类有这个方法来设置一个监听器,一旦 TextToSpeech 播放完毕,该监听器就会收到通知: public int set
我正在制作一个应用程序,每次触发 broadcastreceiver 时都使用 tts 合成 wav 文件。我正在使用 AndroidStudio(最新)并在 15 分钟内使用 API 级别 19。
我正在尝试在 tts 上放置一个 onUtteranceProgressListener。我已经浏览了 stackoverflow 上的其他相关问题并关注了它们。但即使通过 Hashmap 或 Bun
我的代码: import java.math.BigInteger; import java.security.SecureRandom; import java.util.HashMap; impo
我想知道为什么我的 UtteranceProgressListener 没有被调用。这是我尝试这样做的方式 private UtteranceProgressListener progressLis
自 2 天以来,我一直在尝试让 UtteranceProgressListener 工作。我一直在尝试 Stackoverflow 和其他一些网站上的很多代码 - 对我来说没有任何效果。这是我当前的代
我是一名优秀的程序员,十分优秀!