Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3     android:layout_width="match_parent"
      4     android:layout_height="match_parent" >
      5 
      6     <View
      7         android:id="@+id/bg_container"
      8         android:layout_width="match_parent"
      9         android:layout_height="match_parent"
     10         android:background="@drawable/starry_night_bg" />
     11 
     12     <LinearLayout
     13         android:id="@+id/my_container"
     14         android:layout_width="match_parent"
     15         android:layout_height="match_parent"
     16         android:orientation="vertical" >
     17 
     18         <View
     19             android:id="@+id/from_left"
     20             android:layout_width="match_parent"
     21             android:layout_height="48dip"
     22             android:background="#7000FF00" />
     23 
     24         <View
     25             android:id="@+id/from_right"
     26             android:layout_width="match_parent"
     27             android:layout_height="0dip"
     28             android:layout_margin="80dip"
     29             android:layout_weight="1"
     30             android:background="#90FF0000" />
     31 
     32         <View
     33             android:id="@+id/from_left"
     34             android:layout_width="match_parent"
     35             android:layout_height="48dip"
     36             android:background="#7000FF00" />
     37     </LinearLayout>
     38 
     39 </FrameLayout>