gpt4 book ai didi

android - Android TextView 中的强制星号

转载 作者:太空狗 更新时间:2023-10-29 16:36:37 26 4
gpt4 key购买 nike

我想使用包含红色星号的 TextView 显示必填字段

My Output

Required Output

我尝试修改代码,但没有得到预期的结果。

我的代码:

public void setCompulsoryAsterisk() {
txt_name="Name : ";
String colored="*";
SpannableStringBuilder strBuilder=new SpannableStringBuilder();
strBuilder.append(txt_name);
int start=strBuilder.length();
strBuilder.append(colored);
int end=strBuilder.length();
strBuilder.setSpan(new ForegroundColorSpan(Color.RED), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
txtName.setText(strBuilder);
}

最佳答案

尝试这样的事情:

string = "<font color='#000000'>Name </font>" + "<font color='#FF0000'>*</font>" + "<font color='#000000'>:</font>";
textView.setText(Html.fromHtml(string));

关于android - Android TextView 中的强制星号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27243273/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com