How to make a button with a weight of 3 equal in width to three buttons with a weight of 1? The red-signed layout_weight buttons.
<TableRow android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:id="@+id/buttonHistory" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="3" android:text="Button" /> <Button android:id="@+id/buttonBackspace" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="Button" /> </TableRow> <TableRow android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1"> <Button android:id="@+id/button7" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:text="7" /> <Button android:id="@+id/button8" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:text="8" /> <Button android:id="@+id/button9" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:text="9" /> <Button android:id="@+id/buttonDivide" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:text="/" /> 
layout_widthis equal to what? 0dp? - eugeneek