26

我创建了一个名为 editor.xml 的 xml 文件,其中包含一个 FrameLayout。在我的主要活动中,我试图将我的自定义片段添加到我的 FrameLayout。

尝试添加片段时收到的错误是:

FragmentTransaction 类型中的方法 add(int, Fragment) 不适用于参数 (int, editorFrag)

但是我的 editorFrag 扩展了 Fragment 所以我对为什么会发生这种情况感到困惑。下面是我提到的文件的代码。任何帮助表示赞赏。

编辑器.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_width="match_parent"
android:layout_height="match_parent" />

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 版本,而不是我需要的支持版本。感谢您的帮助。

4

3 回答 3

33

You forgot to commit() your transaction.

于 2012-08-24T17:29:07.087 回答
5

您也忘记调用该addtoBackStack()方法,否则您的应用会在您点击后退按钮时关闭。

于 2014-02-17T23:09:35.480 回答
5

像这样添加 commit()

 getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag).commit();
于 2015-08-18T11:00:45.133 回答