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

后端 未结 4 1881
眼角桃花
眼角桃花 2021-02-09 03:27

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

相关标签:
4条回答
  • 2021-02-09 03:49

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

    0 讨论(0)
  • 2021-02-09 03:57

    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"

    0 讨论(0)
  • 2021-02-09 04:10

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

    etc.

    0 讨论(0)
  • 2021-02-09 04:12

    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 讨论(0)
提交回复
热议问题