Search code examples
androidxmlspecial-characters

Android xml changes order of special chars?


     <TextView
     android:layout_width="wrap_content"
     android:layout_height="0dp"
     android:layout_weight="2"
     android:text="&#x2500; 23"
     android:textColor="#ffffff"
     android:textSize="9sp" />

will results

    23 ─ 

instead of expecting

    ─ 23

why?


Solution

  • Some eclipse problem between graphical layout and xml editor.

    how the error looks like