Android XML转义"@"符号

Jes*_*run 10 xml android android-layout

如何@在Android XML文件中使用as文本,因为它具有特殊含义?我有一个TextView只会保留文本@

我试过了:

<TextView
    android:id="@+id/at_text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/account_name"
    android:gravity="center_horizontal"
    android:padding="3dip"
    android:text="@" />
Run Code Online (Sandbox Code Playgroud)

那当然不适用于错误

错误:错误:未指定资源类型(在'text'处,值为'@').

所以我尝试将它指向这样的条目strings.xml: <string name="at">@</string>这显示错误:

错误:错误:未指定资源类型(在'at'处,值为'@').

那么我如何@作为TextView的文本进行转义?

Dhe*_*ngh 20

用这种方式..............

 <string name="at">\@</string>
Run Code Online (Sandbox Code Playgroud)