1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:id="@+id/home_root" 3 android:orientation="horizontal" 4 android:layout_width="fill_parent" 5 android:layout_height="fill_parent"> 6 7 <LinearLayout android:orientation="vertical" 8 android:layout_width="wrap_content" 9 android:layout_height="fill_parent"> 10 <fragment android:name="com.android.eclipse.tests.TestFragment" 11 android:id="@+id/test_fragment" 12 android:layout_marginLeft="20dp" 13 android:layout_weight="1" 14 android:layout_width="fill_parent" 15 android:layout_height="0dp" /> 16 <fragment class="com.android.eclipse.tests.TestFragment" 17 android:id="@+id/test_fragment2" /> 18 </LinearLayout> 19</LinearLayout> 20