FragmentManager给了我NPE

时间:2015-05-28 16:25:12

标签: android android-fragments

我第一次检查片段,我创建了一个带有FrameLayout的LinearLayout,对于我的layout-sw600dp我创建了一个带有2个FrameLayouts的LinearLayout。

一个的id为“main”,另一个是“details”。

我得到的错误是:

 Caused by: java.lang.NullPointerException
        at android.app.BackStackRecord.doAddOp(BackStackRecord.java:395)
        at android.app.BackStackRecord.add(BackStackRecord.java:385)
        at mes.fallstudio.tvfall.MainActivity.onCreate(MainActivity.java:28)

其中第28行是最后一行:

public class MainActivity extends AppCompatActivity {
private android.support.v4.app.Fragment mainFragment;
private android.app.Fragment detailsFragment;
private Boolean isDualPane = false;

private android.support.v4.app.FragmentManager fm;

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

    android.support.v4.app.FragmentManager fragmentManager = getSupportFragmentManager();
    mainFragment = fragmentManager.findFragmentById(R.id.main);

    android.support.v4.app.FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
    fragmentTransaction.add(R.id.main, mainFragment).commit();


}
}

XML布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="match_parent">


<FrameLayout
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</FrameLayout>

<FrameLayout
    android:id="@+id/details"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</FrameLayout>

这适用于layout-sw600dp,而没有第二个FrameLayout(详细信息)的布局文件夹的xml文件。

如果有帮助,我正在扩展AppCompatActivity。 谢谢你

1 个答案:

答案 0 :(得分:3)

AppCompatActivity使用getSupportFragmentManager()代替getFragmentManager()

参考:https://developer.android.com/reference/android/support/v7/app/AppCompatActivity.html

编辑:

在您的代码中,您尝试从XML布局中获取mainFragment。但是,您没有在那里定义它。您可以在代码中实例化mainFragment

mainFragment = new MainFragment();

或者在XML中定义它:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="match_parent">

<fragment android:name="mes.fallstudio.tvfall.MainFragment"
    android:id="@+id/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<FrameLayout
    android:id="@+id/details"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
</FrameLayout>

在后一种情况下,您不需要在代码中使用FragmentManager,除非您需要在运行时操作片段。

在这两种情况下,您还需要实际的片段:

public class MainFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.main_fragment, container, false);
    }
}