1

私は3つのフラグメントを持っており、それらは以下に示すように配置されています:

「フラグメント A とフラグメント C は接続されていませんが、フラグメント B と C は接続されています。各フラグメントには 1 つのリストビューが含まれているため、イベントをトリガーするたびに次のフラグメントに移動します。」

フラグメント A ---> (フラグメント内A)フラグメント B ---> (フラグメント内B)フラグメント C

  • フラグメント A (main.xml)
  • フラグメント B(R.id.contentFragment)
  • フラグメント C(R.id.contentFragment)

Fragment A と Fragment B は表示できて大丈夫なのです、 Fragment C を から呼び出すB"No view found in contentFragment=0x7f040039".

Main.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>

FragmentA.java

フラグメント A 内でフラグメント B を開く

 Fragment fragment1 = new FragmentB();

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

FragmentB.java

フラグメント B 内でフラグメント C を開く

     String fragGroups = "groups";

    Fragment fragment1 = new FragmentC();

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

FragmentC.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
<?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 に答える