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

布局:

<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);
    ...
}

最佳答案

这是因为replace()不会立即执行,但是FragmentTransaction已安排好了。当您在替换 fragment 后立即findFragmentById()时,它们尚未被替换...

关于android - 为什么findFragmentById返回调用FragmentLayout之前的旧 fragment ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18640922/

10-09 01:44