Podría ser algo así:
  layout.xml   
Código XML:
Ver original- <?xml version="1.0" encoding="utf-8"?> 
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
-     android:orientation="horizontal" android:layout_width="fill_parent" 
-     android:layout_height="fill_parent"> 
-     <LinearLayout  
-         android:layout_width="wrap_content" 
-         android:layout_height="fill_parent"  
-         android:layout_weight="1"  
-         android:background="#0000ff" 
-         android:orientation="horizontal">                
-     </LinearLayout> 
-     <LinearLayout  
-         android:layout_width="wrap_content" 
-         android:layout_height="fill_parent" 
-         android:layout_weight="1"   
-         android:layout_gravity="left" 
-         android:background="#ffffcc" 
-         android:orientation="horizontal">                
-     </LinearLayout> 
- </LinearLayout> 
Saludos.