如何在 Android 布局文件中定义 带下划线xml的文本?
xml
如果您使用的是字符串资源 xml 文件,则可以实现它,该文件支持 HTML 标签,如<b></b>,<i></i>和<u></u>.
<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);