开发者

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

I need 开发者_JS百科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?


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

etc.


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..


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"


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 >

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜