[置顶] Android 对text文本内容添加下划线

String.xml文件内容

<resource>
     <string name="ceshi"><u>underline</u></string> 
</resources> 

Xml布局文件应该使用上边的string资源和下边的textview属性,如下所示:

<TextView android:layout_width="wrap_content"
  android:gravity="center_horizontal"
          android:layout_height="wrap_content"
          android:text="@string/my_text"
/>

你可能感兴趣的:([置顶] Android 对text文本内容添加下划线)