Сделайте свой первый элемент следующим образом:
<TextView
style="@style/option_type_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/rounds" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center">
<Button
android:id="@+id/minus_round_button"
style="@style/change_value_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/minus" />
<EditText
android:id="@+id/round_minutes"
style="@style/option_input_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/default_time" />
<Button
android:id="@+id/plus_round_button"
style="@style/change_value_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/plus"/>
</LinearLayout>