我有一个TextView来显示一段文字,我希望我的应用程序在按下时使用TTS说出单个单词。如果按下时可以突出显示单词会更好看。我已经使用ClickableSpan为每个单词实现了它。它工作得很好,除了我没有看到如何在播放完成后将突出显示的状态重置为正常状态。每次单击一个新单词时,前一个单词都会丢失高亮显示,新单词会突出显示,但我不知道如何在TTS回拨后删除高亮显示:
我的TextView:
<TextView
android:id="@+id/sentence"
...
android:textColorHighlight="@color/i_blue"
/>
要填写TextView,我使用:
SpannableStringBuilder strBuilder = new SpannableStringBuilder();
Iterator<Word> iterator = e.getWordList().iterator();
int wordStart, wordEnd;
while (iterator.hasNext()) {
Word w = iterator.next();
wordStart = strBuilder.length() + w.getPrefix().length();
wordEnd = wordStart + w.getWord().length();
strBuilder.append(w.getPrefix() + w.getWord() + w.getSuffix());
final String currentWord = w.getWord();
ClickableSpan readWord = new ClickableSpan() {
private String clickedWord = currentWord;
public void onClick(View view) {
Message msg = m_HandlerReadWord.obtainMessage();
msg.obj = clickedWord;
m_HandlerReadWord.sendMessage(msg);
}
@Override
public void updateDrawState(TextPaint ds) {
super.updateDrawState(ds);
ds.setUnderlineText(false);
}
};
strBuilder.setSpan(readWord, wordStart, wordEnd, 0);
}
m_SentenceView.setText(strBuilder);
m_SentenceView.setMovementMethod(LinkMovementMethod.getInstance());
我也有这个方法,一旦TTS在完成播放单词后回叫,就会调用该方法:
public void resetHighlight() {
//What can I do there to reset any highlighted word?
}
我有办法吗?或者有比ClickableSpan更好的方法吗?
答案 0 :(得分:2)
我终于找到了一个对我有用的技巧。当TextView中的文本颜色发生更改时,将重置所有高亮显示。因此,如果我在TTS的回调中触发文本颜色更改,则突出显示将被删除。脏的部分是触发的颜色变化必须是不同的颜色。所以我必须在TTS回调时和ClickableSpan的onClick处理程序中更改颜色。我将这两种颜色设置为两种几乎相同的颜色。
我的ClickableSpan:
final int AlmostBlack = m_Resources.getColor(R.color.i_black_almost);
ClickableSpan readWord = new ClickableSpan() {
private int almostBlack = AlmostBlack;
public void onClick(View view) {
TextView v = (TextView) view;
v.setTextColor(almostBlack);
...
在TTS回调时的处理程序中:
m_SentenceView.setTextColor(m_Resources.getColor(R.color.i_black));
如果你想做类似的事情而不等待TTS或任何回调,你可以使用颜色状态列表在按下或释放视图时触发颜色变化:
颜色状态列表res / color / clickable_words.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:color="@color/i_black_almost" android:state_pressed="true"/>
<item android:color="@color/i_black" />
</selector>
TextView:
<TextView
android:id="@+id/sentence"
...
android:textColor="@color/clickable_words"
android:textColorLink="@color/clickable_words"
android:textColorHighlight="@color/i_blue" />