Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/10/2011, 09:07
cucuru
 
Fecha de Ingreso: marzo-2009
Mensajes: 509
Antigüedad: 15 años, 2 meses
Puntos: 17
Respuesta: linear layout porcentual

pues ya lo tengo! copio como se hace por si alguien más tiene ese problema

Código:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:weightSum="1.0"
    >
    
    <LinearLayout

   	android:layout_width="fill_parent"
   	android:layout_height="0dip"
        android:layout_weight=".9">  

   </LinearLayout>
  
 
   <LinearLayout
      android:layout_width="fill_parent"
      android:layout_height="0dip"
      android:layout_weight=".1">

   </LinearLayout>
    
</LinearLayout>
Saludos!!