Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout
      3     xmlns:android="http://schemas.android.com/apk/res/android"
      4     android:layout_width="fill_parent"
      5     android:layout_height="fill_parent"
      6     android:orientation="vertical"
      7     >
      8   <TextView
      9       android:id="@+id/tacos"
     10       android:layout_width="wrap_content"
     11       android:layout_height="wrap_content"
     12       android:text="TACOS"/>
     13   <TextView
     14       android:id="@+id/burritos"
     15       android:layout_width="wrap_content"
     16       android:layout_height="wrap_content"
     17       android:text="BURRITOS"/>
     18 </LinearLayout>
     19