The method replace(int, Fragment

作者: K_非糖煮 | 来源:发表于2016-07-11 14:42 被阅读78次

The method replace(int, Fragment) in the type FragmentTransaction is not app对于这个错误提示,一般来说有两种情况:

1、FragmentManager fragmentManager=getSupportFragmentManager();

或者

FragmentManager fragmentManager=getFragmentManager();

没有对应

根据你所导入的包的内容对应起来,SDK版本较高的可以选择第二种代码。

2、你所要replace或者add的Fragment并没有继承Fragment,检查一下是否依然继承了Activity。

目前我只遇到这两种情况,也欢迎大家前来补充哈~

相关文章

网友评论

    本文标题:The method replace(int, Fragment

    本文链接:https://www.haomeiwen.com/subject/ctkjjttx.html