Set the width on the parent element instead of forcing the job on the buttons.

This commit is contained in:
Kevin Ruland 2012-07-19 14:42:55 +00:00
parent 5603cda3ce
commit 4b9cc99710

View File

@ -4,6 +4,7 @@
android:layout_height="match_parent"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:minWidth="250dp"
android:orientation="vertical" >
<TextView
@ -77,13 +78,13 @@
<Button
android:id="@+id/simulationConditionDelete"
android:layout_width="250dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/Delete" />
<Button
android:id="@+id/simulationConditionRun"
android:layout_width="250dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/Run" />