无法将按钮文本设置为“<<<”
Posted
技术标签:
【中文标题】无法将按钮文本设置为“<<<”【英文标题】:Cannot set button text to "<<<" 【发布时间】:2018-10-28 01:36:01 【问题描述】:我正在尝试从我的 xml 将按钮的文本设置为“
<Button
android:id="@+id/test"
android:text="<<<"
android:layout_
android:layout_ />
所以我跳到我的 strings.xml 并在那里输入它,这显然行不通。
<string name="abc"> <<< </string>
有解决办法吗?
【问题讨论】:
【参考方案1】:这些是 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  
【讨论】:
【参考方案2】:你可以使用
< (less-than) < or <
> (greater-than) > or >
& (ampersand) & or &
' (apostrophe or single quote) ' or '
" (double-quote) " or "
请查看以下链接:
Predefined entities in XML
Using Special Characters in XML
*** - escaping special characters like & in android xml
【讨论】:
【参考方案3】:将&gt;
用于>
,&lt;
用于<
,&amp;
用于&
,&apos;
用于'
,&quot;
用于"
【讨论】:
以上是关于无法将按钮文本设置为“<<<”的主要内容,如果未能解决你的问题,请参考以下文章