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
http://kor.pe.kr/util/4/charmap2.htm
'<'
android:text="<"
'>'
android:text=">"
'안드로이드' 카테고리의 다른 글
[Android] Hilt - Retrofit + ViewModel로 이해해보기 (0) | 2023.08.25 |
---|---|
[Android] floating button Icon 색상 적용 안되는 문제 (0) | 2023.08.25 |
[Android] - Suggestion: add 'tools:replace="android:theme"' to <application> element at AndroidManifest.xml 에러 발생 (0) | 2023.07.13 |
[안드로이드] scrollview 안에 recyclerview 스크롤 막기 (0) | 2023.02.03 |
[안드로이드] RecyclerView 스크롤시 아이템 변경 오류 (0) | 2023.02.03 |