안드로이드 개발 질문/답변
(글 수 45,052)
다름이 아니라
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/wrap" >
<com.custom.~~~ />
<Linearlayouy ~~ />
/>
이런식으로 com.custom ~ 와 linearlayout 을 간단하게 이용하여 com 위에 뛰우려고 했는데
그 라이브러리에서 겹치게 출력하면 에러 뿜고 죽더라구요.
due to unauthorized overlay on top of player. The customview is obscured by android.widget.LinearLayout@40da62a0. The view is inside the customview, with the distance in px between each edge of the obscuring view and the customview being: left: 0, top: 0, right: 0, bottom: 495..
이런식으로 오버레이 하면 죽이겠따 이런식으 메세지가 뜨는데
이런 경우 어떤식으로 customview 위에 다른 뷰들을 뛰울수 있을까요 ?
에러문구만 봤을때는 커스텀뷰의 사이즈가 이상해서 죽는것 같은데요?
left,top,right 좌표가 0 이고 bottom 만 495라는것 같은데 ~_~;
혹시 단순하게 커스텀뷰만 사용했을때는 오류가 안나는지 궁금하네요.