如何在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);
关于android - 我可以在Android版式中给文字加上下划线吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2394935/