본문 바로가기
C++ 200제/코딩 IT 정보

No resource identifier found for attribute ‘style’ in package ‘android’ (안드로이드)

by vicddory 2018. 5. 5.

No resource identifier found for attribute ‘style’ in package ‘android’ (안드로이드)


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’ (안드로이드)

댓글