주제
TextView 의 text 에 특수 문자 '<' 를 사용했더니 에러가 발생했다.
android:text="<"
문제
Build> Build Output 에 아래와 같이 메시지가 띄워졌다.
ParseError at [row,col]:[25,23]
Message: 요소 유형 "TextView"과(와) 연관된 "android:text" 속성의 값에는 '<' 문자가 포함되지 않아야 합니다.
해결
android:text="\u003C"
android:text="<"
참고
W3C 개발자 사이트 - Character Entity Reference Chart(문자 참고 표)
https://dev.w3.org/html5/html-author/charref
728x90
'Software > Android' 카테고리의 다른 글
[Android] Run 중 문제 - Failed to compile values resource file (0) | 2022.09.18 |
---|---|
[Android] Constraintlayout 객체 가운데 위치 설정하기 (0) | 2022.03.18 |
[Android] 경고 - No speakable text present 없애기 (0) | 2022.03.11 |
[Android] 개발자 옵션 켜기 (0) | 2021.10.17 |
[Android] 에러: setText() 사용시 - Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference (0) | 2020.12.23 |