Fragment销毁时replace和add两个方法的区别
/**
* 跳转页面
*
* @param from
* @param to
*/
public void switchContent(Fragment from, Fragment to) {
if (from != to) {
mContent = to;
FragmentTransaction transaction = getSupportFragmentManager()
.beginTransaction();
//to.getLoaderManager().hasRunningLoaders();
//念物 先判断是否被add过
if (!to.isAdded()) {
// 隐藏当前的fragment,add下一个到Activity中
transaction.hide(from).add(R.id.content_view, to).commit();
} else {
// 隐培陪藏当前的fragment,显示下一个
transaction.hide(from).show(to).commit();
}
}
}
这个是我项目用到的,仔中液你可以参考下,其中from是当前页面,To是你要切换到的页面。