尝试将片段添加到我的片段容器 FrameLayout
Posted
技术标签:
【中文标题】尝试将片段添加到我的片段容器 FrameLayout【英文标题】:Trying to add a fragment to my fragment container FrameLayout 【发布时间】:2012-08-20 06:58:04 【问题描述】:我创建了一个名为 editor.xml 的 xml 文件,其中包含一个 FrameLayout。在我的主要活动中,我试图将我的自定义片段添加到我的 FrameLayout。
尝试添加片段时收到的错误是:
FragmentTransaction 类型中的方法 add(int, Fragment) 不适用于参数 (int, editorFrag)
但是我的 editorFrag 扩展了 Fragment 所以我对为什么会发生这种情况感到困惑。下面是我提到的文件的代码。任何帮助表示赞赏。
Editor.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_
android:layout_ />
editorFrag.java
public class editorFrag extends Fragment
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
// Inflate the layout for this fragment
return inflater.inflate(R.layout.newlevel, container, false);
MainActivity.java
public class editorActivity extends FragmentActivity
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.editor);
// Check that the activity is using the layout version with the fragment_container FrameLayout
if(findViewById(R.id.fragment_container) != null)
// if we are being restored from a previous state, then we dont need to do anything and should
// return or else we could end up with overlapping fragments.
if(savedInstanceState != null)
return;
// Create an instance of editorFrag
editorFrag firstFrag = new editorFrag();
// add fragment to the fragment container layout
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag);
回答:
Luksprog 在下面通过告诉我检查我的进口来为我回答了这个问题。 Eclipse 选择导入 Fragment 的 SDK 版本,而不是我需要的支持版本。谢谢你的帮助。
【问题讨论】:
检查您的导入。看看你是不是导入了Fragment
的SDK
版本,而不是兼容包Fragment
。
你说得对,我让 eclipse 为我导入,它确实选择了 SDK 版本,在我的活动中它选择了支持版本。非常感谢
@Perdom 介意接受这个问题的答案吗?谢谢。 meta.stackexchange.com/questions/5234/…
【参考方案1】:
您忘记commit()
您的交易。
【讨论】:
你在这方面是正确的,但我取消了提交以尝试缩小我的问题。不过谢谢你的回答,我需要再次添加 commit()。【参考方案2】:您还忘记调用addtoBackStack()
方法,否则您的应用会在您点击返回按钮时关闭。
【讨论】:
【参考方案3】:像这样添加 commit()
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag).commit();
【讨论】:
以上是关于尝试将片段添加到我的片段容器 FrameLayout的主要内容,如果未能解决你的问题,请参考以下文章