android – 在TextView中的文本中转义“”

前端之家收集整理的这篇文章主要介绍了android – 在TextView中的文本中转义“”前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个textView,我正在粘贴s字符串作为文本,我有一些“双引号字符”如何逃避这些字符.

解决方法

反斜杠双引号在 XML布局中不起作用.您应该使用HTML代码(quot),如下所示:
<TextView android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:text="Here goes my &quot;escaped&quot; text!" />

上面的代码显示一个TextView,其中包含:

Here goes my “escaped” text!

XML有5 of these predifined entities

&quot;   "
&amp;    &
&apos;   '
&lt;     <
&gt;     >
原文链接:https://www.f2er.com/android/316156.html

猜你在找的Android相关文章