android-立即异常

android-立即异常,第1张

概述我正在尝试使用android:minSdkVersion=“15”运行FragmentLayout示例程序它在执行SetContentView()时立即失败了,出现以下异常:UnabletostartactivityComponentInfo{net.examples.HelloFragmentLayoutet.examples.HelloFragmentLayout.FragmentLayout}:android.view.Infl @H_404_0@我正在尝试使用android:minSdkVersion =“ 15”运行FragmentLayout示例程序

@H_404_0@它在执行SetContentVIEw()时立即失败了,出现以下异常:

@H_404_0@

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-立即异常所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1072441.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存