티스토리 뷰
C++ 200제/코딩 IT 정보
No resource identifier found for attribute ‘style’ in package ‘android’ (안드로이드)
vicddory 2018. 5. 5. 16:58목차
No resource identifier found for attribute ‘style’ in package ‘android’ (안드로이드)
안드로이드 에러 메시지
"No resource identifier found for attribute ‘style’ in package ‘android’ "
위의 오류가 발생할 경우의 해결책입니다.
별도의 네임 스페이스를 지정하지 않아도 해결이 가능하지요.
1 | <TextView style="@style/Subheading" /> | cs |
보통, 위와 같은 소스를 아래처럼 고쳐주면 됩니다.
1 | <TextView android:style="@style/Subheading" /> | cs |
No resource identifier found for attribute ‘style’ in package ‘android’ (안드로이드)