IT이야기/Android

[Fragment] Android Fragment 밀리는 현상, 문제

FelixShin 2016. 10. 24. 07:31
반응형



안드로이드 fragment view를 만들다가 문제가 발생했다.


프래그먼트뷰를 잡은 곳에 프래그먼트를 올렸는데 전에 프래그먼트 뷰 잔상이 남아서 프래그먼트뷰가 밀리는 현상이였다.


간단히 Fragment 컴포넌트로 잡은 부분을 FrameLayout으로 바꾸어 해결했다...

해결하는데 2,3일은 걸렸던 것 같다.........휴휴휴휴


개발은 삽질이다........ㅠㅠ


Caused by: android.view.InflateException: Binary XML file line #141: Error inflating class fragment

프래그먼트뷰쪽에서 나는 애러였다.


From : 

<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.8">

<FrameLayout
android:id="@+id/fragment_view"
android:name="com.samsung.sds.vaedgeboard1.main.view.MainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>

</LinearLayout>

To :

<FrameLayout
android:id="@+id/fragment_view"
android:name="com.samsung.sds.vaedgeboard1.main.view.MainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>