26

FrameLayoutを含むeditor.xmlというxmlファイルを作成しました。私のメインアクティビティでは、カスタムフラグメントを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_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は、必要なサポートバージョンではなく、SDKバージョンのFragmentをインポートすることを選択しました。お手伝いありがとう。

4

3 に答える 3

33

commit()あなたはあなたの取引を忘れました。

于 2012-08-24T17:29:07.087 に答える
5

また、メソッドを呼び出すのを忘れていましたaddtoBackStack()。そうしないと、戻るボタンを押したときにアプリが閉じます。

于 2014-02-17T23:09:35.480 に答える