2011-06-30 11 views

Respuesta

14

Se podría lograr esto con algo así: (por aquí verticales)

<LinearLayout 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="0dip" 
    android:weightSum="100"> 
    <LinearLayout 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="60"> 
    </LinearLayout> 
</LinearLayout>` 

Ver android:weightsum documentation

Cuestiones relacionadas