[안드로이드] textview에 '<' 또는 '>' 사용하기

text가 입력이 되는 뷰에

'<' 나 '>'를 쓰기위해 아래와 같이 사용하면

android:text="<"
The value of attribute "android:text" associated with an element type "androidx.appcompat.widget.AppCompatButton" must not contain the '<' character.

위와 같은 오류가 발생한다.

이를 해결하는 방법은 

 

아래 링크를 참고했다.

https://docs.oracle.com/cd/A97335_02/apps.102/bc4j/developing_bc_projects/obcCustomXml.htm

 

Using Special Characters in XML

Using Special Characters in XML When you use wizards to customize any string in your XML file, you can use the following special symbols: <, >, &, ', ". You can also use these symbols when you are editing a query in Expert Mode or when you are manually ent

docs.oracle.com

http://kor.pe.kr/util/4/charmap2.htm

 

HTML 특수문자 리스트

ßßßSmall sharp s, German (sz ligature)

kor.pe.kr

'<' 

android:text="&lt;"

'>'

android:text="&gt;"