Unable to start activity ComponentInfo{net.examples.HelloFragmentLayout/net.examples.HelloFragmentLayout.FragmentLayout}: androID.vIEw.InflateException: Binary XML file line #6: Error inflating class Fragment
@H_404_0@“ net.examples.HelloFragmentLayout / net.examples.HelloFragmentLayout.FragmentLayout”看起来像一个重复,但我不知道是什么原因造成的.@H_404_0@在我的fragment_layout.xml(如下)中,我收到警告“此FrameLayout可以用合并标记替换”.不知道这是否有影响.@H_404_0@<?xml version="1.0" enCoding="UTF-8"?><FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><Fragment androID:ID="@+ID/Titles" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" /></FrameLayout>
解决方法:
@H_404_0@布局中需要小写字母“ f”.@H_404_0@<片段>是由Activity解释的特殊标记,而不是实例化为普通类(例如linearLayout).@H_404_0@<?xml version="1.0" enCoding="UTF-8"?><FrameLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="match_parent"><fragment androID:ID="@+ID/Titles" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" /></FrameLayout>
总结 以上是内存溢出为你收集整理的android-立即异常全部内容,希望文章能够帮你解决android-立即异常所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)