LinearLayout - weight - exemplo 1 |
Top Previous Next |
|
Tela xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" >
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Nome" />
<EditText android:layout_width="fill_parent" android:layout_height="wrap_content" />
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Email" />
<EditText android:layout_width="fill_parent" android:layout_height="wrap_content" />
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Observações" />
<EditText android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" />
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Enviar" />
</LinearLayout>
|