XXXfragment that is not a fragment错误,fragment认不出来

Posted mthoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了XXXfragment that is not a fragment错误,fragment认不出来相关的知识,希望对你有一定的参考价值。

要注意的是fragment事实上是有两个版本号的,一个是

import android.support.v4.app.Fragment;

另外一个是

import android.app.Fragment;

这两个版本号的fragment是不会兼容的。

也就是说要不就全用fragment,要不就全用v4 fragment,不能混搭着用。

在这里我强烈建议刚開始学习的人用第二个,也就是简单的fragment。接下来我说说两者的差别大家就知道为什么了。


1.最低支持版本号不同

android.app.Fragment 兼容的最低版本号是android:minSdkVersion="11" 即3.0版

android.support.v4.app.Fragment 兼容的最低版本号是android:minSdkVersion="4" 即1.6版

 

2.须要导jar包

fragment android.support.v4.app.Fragment 须要引入包android-support-v4.jar


3.在Activity中取的方法不同

android.app.Fragment使用 (ListFragment)getFragmentManager().findFragmentById(R.id.userList)  获得  ,继承Activity(这个只须要继承自最简单的activity)


android.support.v4.app.Fragment使用 (ListFragment)getSupportFragmentManager().findFragmentById(R.id.userList) 获得 ,须要继承android.support.v4.app.FragmentActivity


4.我感觉最重要的,是XML标签的使用


android.app.Fragment能够使用<fragment>标签的,这点非常重要,假设是用android.support.v4.app.Fragment的话,是不能是用<fragment>标签的,会抛出android.view.InflateException: Binary XML file line #7: Error inflating class fragment异常。


由于这个标签的使用还是比較简单的。所以还是比較倾向前者




以上是关于XXXfragment that is not a fragment错误,fragment认不出来的主要内容,如果未能解决你的问题,请参考以下文章

What is the reason that a likelihood function is not a pdf?

“(null)” is of a model that is not supported by this version of Xcode.

$save 给了我 TypeError: undefined is not a function when save model that is a list in angular

pip is configured with locations that require TLS/SSL, however the ssl module in Python is not 解决方法(

“(null)” is of a model that is not supported by this version of Xcode. Please use a different device

pip is configured with locations that require TLS/SSL, however the ssl module in Python is not avail