如何在Android布局xml文件中定义带下划线的文本?
解决方法:
如果您使用的是string resource xml文件,它可以实现,该文件支持HTML标记,例如< b>< / b> ;,< 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);