1

我有三个片段,它们的排列如下所示:

“Frag A 和 Frag C 没有连接,但 Frag B 和 C 是连接的。每个片段包含 1 个列表视图,因此每次触发事件时它都会转到下一个片段。”

片段 A --->(内部A片段)片段 B --->(内部B片段)片段 C

  • 片段 A(main.xml)
  • 片段 B(R.id.contentFragment)
  • 片段 C(R.id.contentFragment)

我可以显示 Fragment A 和 Fragment B 并且没问题,但是B如果我从I got调用 Fragment C "No view found in contentFragment=0x7f040039"

主.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"  
                android:background="@color/white" 
                android:id="@+id/frameLayout"    
                >

            <ListView
            android:id="@android:id/list"
            android:layout_width="fill_parent"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
            android:layout_height="wrap_content" 
            >
            </ListView>

    <FrameLayout 
    android:id="@+id/contentFragment"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_weight="1" >
     </FrameLayout>


    </FrameLayout>

</FrameLayout>

片段A.java

在 Fragment A 内打开 Fragment B

 Fragment fragment1 = new FragmentB();

        FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
        transaction.replace(R.id.contentFragment, fragment1, fragMainGroups );
        transaction.addToBackStack(fragMainGroups);
        transaction.commit(); 

片段B.java

在 Fragment B 内打开 Fragment C

     String fragGroups = "groups";

    Fragment fragment1 = new FragmentC();

    FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
    transaction.replace(R.id.contentFragment, fragment1, fragGroups );
    transaction.addToBackStack(fragGroups);
    transaction.commit(); 

片段C.java

内部片段 C

   public class FragmentItems extends ListFragment{

    public void onAttach(Activity activity) {
        super.onAttach(activity);
    }
            public void onActivityCreated(Bundle savedInstanceState) {
                super.onActivityCreated(savedInstanceState);
            }

            public void onCreate(Bundle e)
            {
                super.onCreate(e);
            }

                @Override
                public View onCreateView(LayoutInflater inflater, ViewGroup container,
                        Bundle savedInstanceState) {
                    View rootView = inflater.inflate(R.layout.load_items_activity, container, false);

                    return rootView;
                }
}

日志猫

07-25 18:10:20.388: E/FragmentManager(24703): No view found for id 0x7f040039 (com.jinisys.restoplusordering:id/contentFragment) for fragment FragmentItems{4156f480 #0 id=0x7f040039 groups}
07-25 18:10:20.388: E/FragmentManager(24703): Activity state:

07-25 18:10:20.388: E/FragmentManager(24703): No view found for id 0x7f040039 (com.jinisys.restoplusordering:id/contentFragment) for fragment FragmentItems{4156f480 #0 id=0x7f040039 groups}
07-25 18:10:20.388: E/FragmentManager(24703): Activity state:
07-25 18:10:20.718: E/AndroidRuntime(24703): FATAL EXCEPTION: main
07-25 18:10:20.718: E/AndroidRuntime(24703): java.lang.IllegalArgumentException: No view found for id 0x7f040039 (com.jinisys.restoplusordering:id/contentFragment) for fragment FragmentItems{4156f480 #0 id=0x7f040039 groups}
07-25 18:10:20.718: E/AndroidRuntime(24703):    at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:903)
07-25 18:10:20.718: E/AndroidRuntime(24703):    at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1088)
07-25 18:10:20.718: E/AndroidRuntime(24703):    at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:682)
07-25 18:10:20.718: E/AndroidRuntime(24703):    at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1444)
07-25 18:10:20.718: E/AndroidRuntime(24703):    at android.support.v4.app.FragmentManagerImpl$1.run(FragmentManager.java:429)
07-25 18:10:20.718: E/AndroidRuntime(24703):    at android.os.Handler.handleCallback(Handler.java:615)
4

2 回答 2

0

正如您的错误所述,您正在寻找一个contentFragmentTtems在 Fragment B 中具有 id 的视图,其主视图是contentFragment而不是整体main.xml。因此,如果您想添加新片段,您也应该从片段 A 中添加。

于 2013-07-25T10:50:55.890 回答
0
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"  
                android:background="@color/white" 
                android:id="@+id/frameLayout"    
                >

            <ListView
            android:id="@android:id/list"
            android:layout_width="fill_parent"
            android:layout_alignParentTop="true"
            android:layout_alignParentBottom="true"
            android:layout_height="wrap_content" 
            >
            </ListView>

    <FrameLayout 
    android:id="@+id/contentFragmentb"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_weight="1" >
     </FrameLayout>
<FrameLayout 
    android:id="@+id/contentFragmentc"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_weight="1" >
     </FrameLayout>

    </FrameLayout>

</FrameLayout>

这应该有效。

于 2014-01-27T21:56:55.297 回答