微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

关于两个Fragment布局报错Error inflating class fragment的解决方法


xml源代码如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<FrameLayout
android:id="@+id/main_titles"
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="1" />


<FrameLayout
android:id="@+id/main_details"
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="4" />


</LinearLayout>


运行后报错:android.view.InflateException: Binary XML file line #4: Error inflating class fragment


解决方法:在linearlayout中设置上下文

tools:context=".*********"

星号为调用两个fragment的Activity。

原文地址:https://www.jb51.cc/xml/297690.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。