小编典典

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

all

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


阅读 61

收藏
2022-03-02

共1个答案

小编典典

如果您使用的是字符串资源 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);
2022-03-02