Lo que necesito es hacer algo como se ve en la imagen con los botones arrancar y parar.
Pero sin poner el tamaño de los botones fijo. Ahora mismo lo que hago está puesto abajo y no encuentro como repartir el peso entre dos botones!!
Muchas gracias a todos
Código HTML:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="3dip"
android:paddingRight="3dip"
>
<Button
android:id="@+id/BtnArrancar"
android:layout_width="155dip"
android:layout_height="wrap_content" />
<Button
androi d:id="@+id/BtnPausar"
android:layout_width="155dip"
android:layout_height="wrap_content" />
</LinearLayout>