Use special symbol (<, >) in layout design in A

2019-03-16 02:26发布

问题:

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?

回答1:

Use &lt; for <
Use &gt; for >
Use &amp; for &.

etc.



回答2:

Use &#60; for <

Use &#62; for >

Use &#38; for &

use &#34; for "

for complete List of symbol

use &# decimal code of the symbol ; as above

Enjoy Programming..



回答3:

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"



回答4:

Declare this in string.xml and use:

<string name="sna">Synonyms &amp; 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 &lt; for <

Use &gt; for >