ViewPager를 쓰면서 나타난 오류지만
이건 상관이 없었다..
초보가 낸 어이없는 실수 ..;
java.lang.ClassCastException: android.widget.ExpandableListView
cannot be cast to com.mini_mo.viewpager.ExpandableListView.AnimatedExpandableListView
위와 같은 오류가 났었다.
cannot be cast
ExpandableListView대신 이것을 상속 받은
AnimatedExpandableListView가 잘 못 된줄 알았는데..
xml에 있는 33번째줄 ▼
<com.mini_mo.myapplicaion.ExpandableListView.AnimatedExpandableListView
그냥 복사 붙여넣기를 하면서
경로를 잘못 적어 줬던것..
<com.mini_mo.viewpager.ExpandableListView.AnimatedExpandableListView
그냥 현재 어플리케이션 이름만 바꿔주면 됐다..ㅠ_ㅠ;
'~ 2024.08' 카테고리의 다른 글
유용하게 사용하고 있는 사이트 모음 (1) | 2018.04.20 |
---|---|
안드로이드 ViewPager 만들기 (7) | 2018.04.20 |
custom expandableListView 구현하기 (2) | 2018.04.17 |
HTML 입력 양식 태그 <form> <input> (0) | 2018.04.16 |
HTML 멀티미디어 태그와 입력 양식 태그 (0) | 2018.04.15 |