我正在创建一个搜索引擎,如 android 中的应用程序,我想知道如何在此链接中的列表视图中突出显示搜索的单词.. http://androidbible.blogspot.com/2010/12/color-highlight-and- Whole-word-search.html提前感谢那些想要帮助的人......
问问题
198 次
1 回答
3
我想你可以试试SpannableString
下面只是一个演示。
TextView tv = (TextView) findViewById(R.id.textView1);
SpannableString str = new SpannableString("hello");
BackgroundColorSpan span = new BackgroundColorSpan(Color.YELLOW);
str.setSpan(span, 0, 2, Spannable.SPAN_EXCLUSIVE_INCLUSIVE);
tv.setText(str);
于 2012-05-13T09:21:43.560 回答