android 转义系列

在学习google java编程风格时,看到转义序列,不太了解:

错误写法:

<TextView 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="<hello>"
    />

直接报错

正确写法:

<TextView 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="&lt;aaa&gt;"
    />

xml中只有5个转义符:

<、>、&、'、",分别对应 "&lt;" 、"&gt;"、"&amp;"、"&apos;"、“&quot;”;

 

字符 转义字符
<(小于号) &lt;
>(大于号) &gt;
&(和) &amp;
'(单引号) &apos;
"(双引号) &quot;


你可能感兴趣的:(android 转义系列)