如何使用TextView在Android中高亮特定句子

时间:2012-10-18 11:47:08

标签: android

我正在开发电子书阅读器。亲切地建议我如何在Android中像iBook一样强调我的字符串中的特定句子,在android和amp;中使用MoonReader。更多。

它有任何库。请建议我任何示例或教程。

1 个答案:

答案 0 :(得分:0)

试试这段代码希望对您有所帮助

textView.setText("This Is Android", TextView.BufferType.SPANNABLE);

    Spannable WordtoSpan = (Spannable) textView.getText();

    WordtoSpan.setSpan(new BackgroundColorSpan(FF0000), 6, 15, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

    textView.setText(WordtoSpan);

它将突出显示字符6到15的文本