为什么findFragmentById在调用替换FragmentLayout之前返回旧片段?

时间:2013-09-05 15:56:47

标签: android android-fragments

为什么在将片段从第一个(pageNews)更改为第二个(pageViewFromWeb)后,“findFragmentById”会返回对第一个(pageNews)片段的引用?

布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:paddingTop="10dp"
    android:background="#000">

    <FrameLayout
        android:id="@+id/frgmCont"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#000000">
    </FrameLayout>

</RelativeLayout>

代码:

   fTrans = getSupportFragmentManager().beginTransaction();
   fTrans.add(R.id.frgmCont, pageNews);
   ....
   ....    
   public void selectNews(String news_id) {
   // Toast.makeText(this, news_id, Toast.LENGTH_SHORT).show();
    fTrans = getSupportFragmentManager().beginTransaction();
    fTrans.replace(R.id.frgmCont, pageViewFromWeb);
    fTrans.commit();
    Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.frgmCont);
    ...
}

1 个答案:

答案 0 :(得分:3)

因为replace()不会立即执行,但会安排FragmentTransaction。当您在替换片段后立即findFragmentById()时,它们尚未被替换......