我正在尝试将按钮的文字设置为“<<<<”从我的xml但我得到一个“错误:(20)解析XML时出错:格式不正确(无效令牌)”
<Button
android:id="@+id/test"
android:text="<<<"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
所以我跳到我的strings.xml进入那里,这显然不起作用。
<string name="abc"> <<< </string>
有解决方法吗?
答案 0 :(得分:7)
这些是html实体,也适用于android studio:
> can be replaced with >
< can be replaced with <
" can be replaced with ", “ or ”
' can be replaced with ', ‘ or ’
} can be replaced with }
& can be replaced with &
space can be replaced with  
答案 1 :(得分:3)
对>
使用>
,<
使用<
,&
使用&
,'
使用'
},"
"
答案 2 :(得分:2)
您可以使用
< (less-than) < or <
> (greater-than) > or >
& (ampersand) & or &
' (apostrophe or single quote) ' or '
" (double-quote) " or "
请查看以下链接:
Using Special Characters in XML
Stackoverflow - escaping special characters like & in android xml