我目前有两个并排的按钮,但看起来它们的格式就像我想要的那样,但是左按钮重叠并占据了整个宽度,而右按钮完全符合我的要求。当按下左按钮时,看起来好像两个按钮都被按下了,因为它占据了整个宽度。
<Button
android:id="@+id/set_alarm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/time_picker"
android:layout_alignParentLeft="true"
android:text="@string/set_text"
android:textSize="27sp" />
<Button
android:id="@+id/cancel_button"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_below="@+id/time_picker"
android:layout_alignParentRight="true"
android:text="@string/cancel_alarm_text"
android:textSize="27sp"
android:onClick="cancelAlarm" />