Home | History | Annotate | Download | only in layout-land
      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/landscape"
      6     android:orientation="vertical"
      7     android:layout_width="wrap_content"
      8     android:layout_height="wrap_content"
      9     android:gravity="center_horizontal"
     10     >
     11 
     12   <View
     13       android:layout_width="fill_parent"
     14       android:layout_height="10dip"
     15       />
     16 
     17   <TextView
     18       android:id="@+id/my_landscape_text"
     19       android:text="Landscape!"
     20       android:layout_width="match_parent"
     21       android:layout_height="match_parent"
     22       />
     23 </LinearLayout>
     24