无法提交Extended Fragment类

时间:2013-07-26 11:58:07

标签: android android-fragments android-activity android-fragmentactivity

我正在尝试从活动中打开一个新的Fragment(我创建的一个自定义的片段)。看来我做错了。

这是我尝试做的事情:

getSupportFragmentManager().beginTransaction()
                .add(R.id.fragment_container, firstFragment).commit();

其中firstFragment是此类的对象:

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class AddReceiptFragment extends Fragment{
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);

    }

    @Override
    public void onResume() {
        // TODO Auto-generated method stub
        super.onResume();
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        final ViewGroup view = (ViewGroup) inflater.inflate(
                R.layout.add_receipt, container, false);
        return view;
    }
}

我明白了:方法getSupportFragmentManager()未定义

非常感谢任何提示,谢谢。

0 个答案:

没有答案