Android布局设计中使用特殊符号(<,>)

发布于 2024-11-09 22:43:17 字数 160 浏览 0 评论 0 原文

我需要两个导航按钮,其文本为 <>。但是,编译器不允许我使用这些符号,即使我使用 \<\> 也是如此。

有没有办法将这些符号放入 XML 设计文件中?

I need two navigation buttons with their texts are < and >. However, the compiler doesn't allow me use those symbols, even if I use \< and \>.

Is there anyway to put these symbol into the XML design file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

美胚控场 2024-11-16 22:43:17

使用 < 表示 <
使用 > 表示 >
使用 & 表示 &。

ETC。

Use < for <
Use > for >
Use & for &.

etc.

桃扇骨 2024-11-16 22:43:17

使用 < 表示 <

使用 > 表示 >

使用 & 表示 &

使用 " for "

的完整列表

获取符号使用 &# 符号的十进制代码;如上

享受编程..

Use < for <

Use > for >

Use & for &

use " for "

for complete List of symbol

use &# decimal code of the symbol ; as above

Enjoy Programming..

眸中客 2024-11-16 22:43:17

鼓励 Android 程序员将字符串值存储在 res/values/strings 中。如果您在此处添加字符串,则可以在 xml 文件中引用它,如下所示:android:text="@string/mystring"

It is encouraged for Android programmers to store String values in res/values/strings. If you add a String here, you can reference it in your xml file like so: android:text="@string/mystring"

谁人与我共长歌 2024-11-16 22:43:17

string.xml 中声明它并使用:

<string name="sna">Synonyms & Antonyms</string>

并且只需在以下位置调用它:

<TextView 
    android:text="@string/s_n_a"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@color/White"
    android:layout_gravity="center"
    android:textAppearance="?android:attr/textAppearanceLarge"/>

使用 < 表示 <

使用 > 表示 >

Declare this in string.xml and use:

<string name="sna">Synonyms & Antonyms</string>

And simply call this in:

<TextView 
    android:text="@string/s_n_a"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="@color/White"
    android:layout_gravity="center"
    android:textAppearance="?android:attr/textAppearanceLarge"/>

Use < for <

Use > for >

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文