我为那个可怕的头衔道歉,但我想要准确。
我在LinearView中有ScrollView,并且我通过TextView动态创建多行填充句子。 我设置了使用SpannableText创建的不同collors,但我不知道如何使TextView的每个单词按照我想要的方式响应 - 弹出包含这个单词的对话框问题,并问我想用它做什么。 我想将它移动到下一个片段中的EditText ..只有..
请问,什么样的魔法最适合这个活动?也许在一句话中只举一点例子。
答案 0 :(得分:0)
您可以使用Spannable做更多事情,this blog post拥有关于Spannable的所有内容,它应该能够为您提供帮助。
如果您不想阅读整个博客,那么这里就是简短的答案。
SpannableString ss = new SpannableString("Color text");
ForegroundColorSpan span = new ForegroundColorSpan(Color.RED);
ss.setSpan(span, 0, ss.length(), 0);