-
안드로이드 오류 android.view.InflateException: Binary XML file line #2: Binary XML file line #2: Error inflating class android.support.v7.widget.CardView오류 2020. 5. 9. 17:53
안드로이드 에뮬레이터가 종료 되면서 밑에와 같은 에러를 출력하는 경우
<android.support.v7.widget.CardView>의 문제로 발생하는 에러이다.
xml 파일에서 <android.support.v7.widget.CardView> 로 사용한 코드를 밑에와 같이 바꿔주면 해결된다.
<androidx.cardview.widget.CardView </androidx.cardview.widget.CardView>
gradle도 수정해야 된다면 밑에와 같이 추가해주면 된다.
implementation 'com.android.support:cardview-v7:28.0.0'