本文介绍了错误:必需:android:support.v4.FragmentManager,找到:android.app.FragmentManager的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
FragmentManager manager = getFragmentManager();
它给出错误
我使用API 15
I am using API 15
推荐答案
使用 getSupportFragmentManager()
,或者从你拥有的( android.support.v4.app)中更改
)到 FragmentManager
的 import
.FragmentManager android.app.FragmentManager
。
Use getSupportFragmentManager()
, or change the import
for FragmentManager
from what you have (android.support.v4.app.FragmentManager
) to android.app.FragmentManager
.
您需要持续使用无论是本地类还是后端。您无法混搭。
You need to consistently use either the native classes or the backport. You cannot mix and match.
这篇关于错误:必需:android:support.v4.FragmentManager,找到:android.app.FragmentManager的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!