由于onCreate错误,无法启动应用

时间:2014-04-07 23:27:13

标签: android

我刚刚创建了一个简单的应用程序,我不知道为什么但它无法启动,当我打开应用程序时它只是关闭而且日志猫说第70行有一个错误{{{ 1}},我有另一个具有相同onCreate方法的应用程序,它只是完美地启动

super.onCreate

这是log cat:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    if (savedInstanceState == null) {
        getSupportFragmentManager().beginTransaction()
                .add(R.id.container, new PlaceholderFragment())
                .commit();
    }
}

1 个答案:

答案 0 :(得分:1)

要调用getSupportFragmentManager,您的类必须扩展FragmentActivity