码迷,mamicode.com
首页 > 移动开发 > 详细

The method replace(int, Fragment, String) in the type FragmentTransaction is not applicable for the

时间:2014-12-06 15:31:01      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:android 错误信息



The method replace(int, Fragment, String) in the type FragmentTransaction is not applicable for the arguments (int, SettingFragment, String)


今天遇到这样一个很奇葩的错误信息,后来查到我导入的包有问题  import android.app.Fragment;
import android.app.FragmentManager;   其实我应该使用的是  import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;   然后自己查看了一下API二者差别还是蛮大的   import android.app.Fragment 只能在API版本大于11的时候使用   而不包含getFragmentManager() 和 getSupportFragmentManager()  两个方法的   虽然在代码这样写不会报错的  但是  replace(int, Fragment, String)执行的时候会一直出现错误   提示上面那个错误信息


The method replace(int, Fragment, String) in the type FragmentTransaction is not applicable for the

标签:android 错误信息

原文地址:http://blog.csdn.net/wangliang198901/article/details/41775225

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!