我可以在Android布局中为文本加下划线吗?

如何在Android布局xml文件中定义带下划线的文本?

解决方法:

如果您使用的是string resource xml文件,它可以实现,该文件支持HTML标记,例如< b>< / b&gt ;,< i>< / i>和< u>< / u>.

<resources>
    <string name="your_string_here">This is an <u>underline</u>.</string>
</resources>

如果你想用代码使用下划线:

TextView textView = (TextView) view.findViewById(R.id.textview);
SpannableString content = new SpannableString("Content");
content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
textView.setText(content);
上一篇:javascript – 如何检测网页中使用了哪个定义的字体?


下一篇:xshell工具