我正在开发一个使用第三方 tts 的应用程序,名为 flite。我正在做类似 tts 说一句话的事情。我想突出显示每个单词。为此,我设法从 tts 中获取了单词级别的回调。工作流程是这样的——按下“说文本”按钮。它启动 tt 服务,然后将文本发送到 C 语言并与应用程序结合的 flite tts。现在,从 C 代码开始,在每个单词之后,我对两个不同的 java 活动进行两次回调:一个是 tts 服务说出单词,第二个是我的测试 java 活动以突出显示单词。我在我的测试活动中成功获得了单词级回调,但之后我无法进行任何 UI 工作。
以下是我收到回调时执行的代码:这是从 C 代码中调用的函数。
private void WordCallback(int isword) {// from
// callback
if (isword == -1) {
Log.d(LOG_TAG, "its not a word");
} else if (isword == -2) {
Log.d(LOG_TAG, "yeah..its the end");
} else {
Log.d(LOG_TAG, "its word no " + isword);
int word = isword;
Log.d(LOG_TAG, "highlightwords");
highlightwords(isword);
if (isword == 4) {
Log.d(LOG_TAG, "in if");
new Thread(new Runnable() {
@Override
public void run() {
Log.d(LOG_TAG, "thread started");
try {
Flitetest.this.runOnUiThread(new Runnable() {
@Override
public void run() {
Log.d(LOG_TAG, "run on ui");
textview.setText("#" + isword);
}
});
Thread.sleep(300);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}).start();
}
}
}
FliteTest 是活动的名称。日志打印到“线程启动”,但 runonuithread() 中的代码永远不会执行,也没有错误。
此外,如果textview.settext("something")
在没有线程和 runonuithread() 的情况下写入,则会出现错误:
fatal signal 11(sigsegv) at 0x6fc64e87(code=1), thread 20292(SynthThread)
.
这种行为的原因是什么?