Home | History | Annotate | Download | only in layout-large
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3     android:orientation="vertical" android:layout_width="fill_parent"
      4     android:layout_height="fill_parent">
      5     <LinearLayout android:layout_width="match_parent" android:id="@+id/linearLayout1"
      6         android:layout_height="fill_parent" android:orientation="horizontal">
      7         <fragment class="com.example.android.wifidirect.DeviceListFragment"
      8             android:id="@+id/frag_list" android:layout_width="@dimen/tablet_list_width"
      9             android:layout_height="match_parent">
     10             <!-- Preview: layout=@layout/row_devices -->
     11         </fragment>
     12         <fragment class="com.example.android.wifidirect.DeviceDetailFragment"
     13             android:id="@+id/frag_detail" android:layout_width="match_parent"
     14             android:layout_height="match_parent">
     15             <!-- Preview: layout=@layout/device_detail -->
     16         </fragment>
     17     </LinearLayout>
     18 </LinearLayout>
     19