Android EditText + set some words in colour(Android EditText + 设置一些颜色的单词)
问题描述
我根据从数据库中提取的内容动态创建 EditText 框.
I create EditText boxes dynamically, depending on what is pulled back from the database.
即.
final EditText textV = new EditText(this);
textV.setText(monEntry);
有没有在不使用 subString() 的情况下将 EditText 中的一些文本设置为一种颜色和另一种颜色?如果有人可以提供帮助,非常感谢!
Is there anyway to set some of the text in the EditText to one colour and another bit to another without using a subString()? Thanks alot if anybody can help!
推荐答案
是的,如果您使用 SpannableString,您可以在文本的不同位置使用不同的颜色.示例:
Yes, you can have different colors in different places of the text if you are using SpannableString. Example:
SpannableString text = new SpannableString("Lorem ipsum dolor sit amet");
final EditText textV = new EditText(this);
// make "Lorem" (characters 0 to 5) red
textV.setSpan(new ForegroundColorSpan(Color.RED), 0, 5, 0);
textV.setText(text, BufferType.SPANNABLE);
或者你可以使用下面的html代码::
or you can use html code as below::
textV.setText(Html.fromHtml(html text having 1 in red 2 in green and so on));
这里有一个更完整的例子.
SpannableString
这篇关于Android EditText + 设置一些颜色的单词的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android EditText + 设置一些颜色的单词
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01