1<?xml version="1.0" encoding="utf-8"?> 2 3<LinearLayout 4 xmlns:android="http://schemas.android.com/apk/res/android" 5 android:id="@+id/fragment_container" 6 android:orientation="vertical" 7 android:layout_width="wrap_content" 8 android:layout_height="wrap_content" 9 android:gravity="center_horizontal" 10 > 11 12 <fragment 13 android:id="@+id/fragment" 14 android:tag="fragment_tag" 15 android:name="org.robolectric.shadows.TestFragment" 16 /> 17 18 <LinearLayout 19 android:id="@+id/dynamic_fragment_container" 20 /> 21 22 23</LinearLayout> 24